Skip to content

Commit

Permalink
fixes #768 Compile error (signed vs unsigned int)
Browse files Browse the repository at this point in the history
gdamore committed Jan 12, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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
@@ -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,

0 comments on commit 6833fce

Please sign in to comment.