From 2eb23ea84712c77f0d71e87b46c5510da339de41 Mon Sep 17 00:00:00 2001 From: kivattt Date: Wed, 24 Jul 2024 23:55:47 +0200 Subject: [PATCH] Fix building for 32-bit architectures --- attr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attr.go b/attr.go index 1e75435..f641c94 100644 --- a/attr.go +++ b/attr.go @@ -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 int64 // 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,