From 01014a74753ed08f42ab81bebc65473bcd254312 Mon Sep 17 00:00:00 2001 From: Fredia Huya-Kouadio Date: Wed, 5 Apr 2023 10:00:23 -0700 Subject: Make tab's close button responsive to touch taps (cherry picked from commit 7325ffdd464c4efe6b7c118c0e6dae2b0ae501fa) --- scene/gui/tab_bar.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scene') diff --git a/scene/gui/tab_bar.cpp b/scene/gui/tab_bar.cpp index 5e378a0321..394e9052c9 100644 --- a/scene/gui/tab_bar.cpp +++ b/scene/gui/tab_bar.cpp @@ -255,12 +255,14 @@ void TabBar::gui_input(const Ref &p_event) { if (tabs[i].rb_rect.has_point(pos)) { rb_pressing = true; + _update_hover(); queue_redraw(); return; } if (tabs[i].cb_rect.has_point(pos) && (cb_displaypolicy == CLOSE_BUTTON_SHOW_ALWAYS || (cb_displaypolicy == CLOSE_BUTTON_SHOW_ACTIVE_ONLY && i == current))) { cb_pressing = true; + _update_hover(); queue_redraw(); return; } -- cgit v1.2.3