From 7e79c07ba7e241b2161322672705c03f2778574f Mon Sep 17 00:00:00 2001 From: Gustavo Jaruga Cruz Date: Sun, 20 Apr 2025 13:46:07 -0300 Subject: [PATCH] Fix tooltip disappearing with wintab tablet driver --- editor/editor_help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index aebe0b40e8..b9427c134d 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -4485,7 +4485,7 @@ void EditorHelpBitTooltip::_notification(int p_what) { queue_free(); } } else if (!Input::get_singleton()->get_last_mouse_velocity().is_zero_approx()) { - if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 250) { + if (!_is_mouse_inside_tooltip && OS::get_singleton()->get_ticks_msec() - _enter_tree_time > 350) { _start_timer(); } }