refactor: Change bit_set type for SizeHints to int

This doesn't really change actual behavior, but to stay accurate to the internal logic of X11, this would be a regular long for the flags, not an unsigned long.
This commit is contained in:
Alexander Cusaac (MightyChubz)
2026-05-13 18:07:57 -04:00
parent 310d27ff19
commit 6888cca982

View File

@@ -713,7 +713,7 @@ AllHints :: WMHints{
.WindowGroupHint,
}
SizeHints :: bit_set[SizeHintsBits; uint]
SizeHints :: bit_set[SizeHintsBits; int]
SizeHintsBits :: enum {
USPosition = 0,
USSize = 1,