Fix Properties tabs all showing tooltip of active tab

This commit is contained in:
Julian Eisel 2018-10-30 23:20:08 +01:00
parent e9980e5a75
commit a287194bce
1 changed files with 1 additions and 1 deletions

View File

@ -4755,7 +4755,7 @@ void UI_but_string_info_get(bContext *C, uiBut *but, ...)
/* enum property */
ptr = &but->rnapoin;
prop = but->rnaprop;
value = (but->type == UI_BTYPE_ROW) ? (int)but->hardmax : (int)ui_but_value_get(but);
value = (ELEM(but->type, UI_BTYPE_ROW, UI_BTYPE_TAB)) ? (int)but->hardmax : (int)ui_but_value_get(but);
}
else if (but->optype) {
PointerRNA *opptr = UI_but_operator_ptr_get(but);