Skip to content

Commit bd73ab4

Browse files
committed
Merge pull request #105576 from GustJc/fix_tooltip_disappearing
Fix EditorInspector tooltip disappearing in special cases
2 parents 97df52c + 7e79c07 commit bd73ab4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/editor_help.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4497,7 +4497,7 @@ void EditorHelpBitTooltip::_notification(int p_what) {
44974497
queue_free();
44984498
}
44994499
} else if (!Input::get_singleton()->get_last_mouse_velocity().is_zero_approx()) {
4500-
if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 250) {
4500+
if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 350) {
45014501
_start_timer();
45024502
}
45034503
}

0 commit comments

Comments
 (0)