Merge pull request #78777 from YeldhamDev/tab_hover_fix

Fix delay on tab resizing when (un)hovering tabs
This commit is contained in:
Yuri Sizov 2023-07-12 15:09:31 +02:00
commit 509645b038

View file

@ -881,6 +881,8 @@ void TabBar::_update_hover() {
if (hover != -1) {
emit_signal(SNAME("tab_hovered"), hover);
}
_update_cache();
queue_redraw();
}
@ -988,6 +990,7 @@ void TabBar::_on_mouse_exited() {
highlight_arrow = -1;
dragging_valid_tab = false;
_update_cache();
queue_redraw();
}