Skip to content

Commit 6833fce

Browse files
committed
fixes #768 Compile error (signed vs unsigned int)
1 parent a9475fd commit 6833fce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

attr.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ package tcell
1616

1717
// AttrMask represents a mask of text attributes, apart from color.
1818
// Note that support for attributes may vary widely across terminals.
19-
type AttrMask int
19+
type AttrMask uint
2020

2121
// Attributes are not colors, but affect the display of text. They can
2222
// be combined, in some cases, but not others. (E.g. you can have Dim Italic,

0 commit comments

Comments
 (0)