Merge pull request #55447 from KoBeWi/show_tooltips_only_when_node_is_not_paused_and_when_it's_paused_don't_show_three_dot_x_edition
This commit is contained in:
commit
964c6ec4d9
1 changed files with 1 additions and 1 deletions
|
@ -2232,7 +2232,7 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
|
|||
}
|
||||
}
|
||||
|
||||
if (can_tooltip && !is_tooltip_shown) {
|
||||
if (can_tooltip && !is_tooltip_shown && over->can_process()) {
|
||||
if (gui.tooltip_timer.is_valid()) {
|
||||
gui.tooltip_timer->release_connections();
|
||||
gui.tooltip_timer = Ref<SceneTreeTimer>();
|
||||
|
|
Loading…
Reference in a new issue