diff options
author | Ryan Roden-Corrent <ryan@rcorre.net> | 2023-03-19 12:26:22 -0400 |
---|---|---|
committer | Ryan Roden-Corrent <ryan@rcorre.net> | 2023-03-27 07:08:29 -0400 |
commit | 894ce41180463a68e51ca2b7787d3e3f2c8a8df8 (patch) | |
tree | 2f43ea17b59214650ded30c4fda9ee3d7e9437ed /editor/editor_help_search.cpp | |
parent | 92bee43adba8d2401ef40e2480e53087bcb1eaf1 (diff) | |
download | redot-engine-894ce41180463a68e51ca2b7787d3e3f2c8a8df8.tar.gz |
Apply clamp_to_embedder on parent resize and popup.
Fixes #75084.
The clamp_to_embedder setting was added in 8be16e0704873f0c9bab8c10dafe2607a00ff78f,
but was not set on any of the in-editor dialogs.
This patch sets `clamp_to_embedder` on editor dialogs so they cannot be dragged out of the frame.
This also modifies `clamp_to_embedder` so a window is clamped to the bounds of an embedder when
it pops up and when the parent is resized.
Diffstat (limited to 'editor/editor_help_search.cpp')
-rw-r--r-- | editor/editor_help_search.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_help_search.cpp b/editor/editor_help_search.cpp index b6f4e90cc5..204d918989 100644 --- a/editor/editor_help_search.cpp +++ b/editor/editor_help_search.cpp @@ -182,6 +182,7 @@ void EditorHelpSearch::popup_dialog(const String &p_term) { EditorHelpSearch::EditorHelpSearch() { set_hide_on_ok(false); + set_clamp_to_embedder(true); set_title(TTR("Search Help")); |