UI: Increase bitfield size for button flags

We were running out of bits :) Only one was left (which D14880 proposes to
use).
This commit is contained in:
2022-05-06 23:48:51 +02:00
parent 5e40c342ae
commit 98a04ed452

View File

@@ -147,7 +147,8 @@ struct uiBut {
/** Pointer back to the layout item holding this button. */
uiLayout *layout;
int flag, drawflag;
uint64_t flag;
int drawflag;
eButType type;
eButPointerType pointype;
short bit, bitnr, retval, strwidth, alignnr;