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:
Julian Eisel 2022-05-06 23:48:51 +02:00
parent 5e40c342ae
commit 98a04ed452
Notes: blender-bot 2023-02-14 05:22:18 +01:00
Referenced by commit 3693e1d8e8, Revert commits to increase button flag bitfield size
Referenced by commit 59cd616534, UI: Update rest of UI code for increased button flag bitfield
1 changed files with 2 additions and 1 deletions

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;