diff options
author | 风青山 <idleman@yeah.net> | 2024-10-14 09:48:58 +0800 |
---|---|---|
committer | 风青山 <idleman@yeah.net> | 2024-10-14 11:17:08 +0800 |
commit | bc30bb4fc059b1b5a6ee2419fb1f495233f50c96 (patch) | |
tree | 0dd158dfd6dd50cb9b8a8d2235e82aded81dca87 /editor/editor_help.cpp | |
parent | 92e51fca7247c932f95a1662aefc28aca96e8de6 (diff) | |
download | redot-engine-bc30bb4fc059b1b5a6ee2419fb1f495233f50c96.tar.gz |
Add `EditorHelpBitTooltip` as a child of `p_target` to avoid jitter
Previously the tooltip popup was added as a child of the `p_target`'s
viewport (usually the root window), which caused the root window to
recalculate the window size, that could cause jitter issues on i3wm
if the actual width of the root window was less than `1024`.
Diffstat (limited to 'editor/editor_help.cpp')
-rw-r--r-- | editor/editor_help.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_help.cpp b/editor/editor_help.cpp index cfe257fcfc..adf9084055 100644 --- a/editor/editor_help.cpp +++ b/editor/editor_help.cpp @@ -3868,7 +3868,7 @@ void EditorHelpBitTooltip::show_tooltip(EditorHelpBit *p_help_bit, Control *p_ta EditorHelpBitTooltip *tooltip = memnew(EditorHelpBitTooltip(p_target)); p_help_bit->connect("request_hide", callable_mp(tooltip, &EditorHelpBitTooltip::_safe_queue_free)); tooltip->add_child(p_help_bit); - p_target->get_viewport()->add_child(tooltip); + p_target->add_child(tooltip); p_help_bit->update_content_height(); tooltip->popup_under_cursor(); } |