Fix T48171: activating spacebar search menu over text button activates it or shows tooltip.

This commit is contained in:
2016-04-17 00:22:42 +02:00
parent 557544f2c4
commit 667a5ef48e
3 changed files with 7 additions and 5 deletions

View File

@@ -1965,11 +1965,17 @@ uiPopupBlockHandle *ui_popup_block_create(
void *arg)
{
wmWindow *window = CTX_wm_window(C);
uiBut *activebut = UI_context_active_but_get(C);
static ARegionType type;
ARegion *ar;
uiBlock *block;
uiPopupBlockHandle *handle;
/* disable tooltips from buttons below */
if (activebut) {
UI_but_tooltip_timer_remove(C, activebut);
}
/* create handle */
handle = MEM_callocN(sizeof(uiPopupBlockHandle), "uiPopupBlockHandle");