Skip to content

Commit 7e79c07

Browse files
committed
Fix tooltip disappearing with wintab tablet driver
1 parent 297650a commit 7e79c07

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
@@ -4485,7 +4485,7 @@ void EditorHelpBitTooltip::_notification(int p_what) {
44854485
queue_free();
44864486
}
44874487
} else if (!Input::get_singleton()->get_last_mouse_velocity().is_zero_approx()) {
4488-
if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 250) {
4488+
if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 350) {
44894489
_start_timer();
44904490
}
44914491
}

0 commit comments

Comments
 (0)