Skip to content

Commit

Permalink
fixes #768 Compile error (signed vs unsigned int)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdamore committed Jan 12, 2025
1 parent a9475fd commit 6833fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion attr.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package tcell

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

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

0 comments on commit 6833fce

Please sign in to comment.