[UXTHEME] Add missing THEME_BUTTON_STATES

CORE-14245 #resolve
This commit is contained in:
Stanislav Motylkov 2018-01-23 14:05:09 +03:00 committed by Giannis Adamopoulos
parent 9e07da5ccb
commit 25564cda9d
2 changed files with 9 additions and 8 deletions

View file

@ -205,7 +205,10 @@ typedef enum {
BUTTON_HOT ,
BUTTON_PRESSED ,
BUTTON_DISABLED ,
BUTTON_INACTIVE
BUTTON_INACTIVE ,
BUTTON_INACTIVE_HOT ,
BUTTON_INACTIVE_PRESSED ,
BUTTON_INACTIVE_DISABLED
} THEME_BUTTON_STATES;
#define HT_ISBUTTON(ht) ((ht) == HTMINBUTTON || (ht) == HTMAXBUTTON || (ht) == HTCLOSE || (ht) == HTHELP)