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.
This commit is contained in:
parent
92bee43adb
commit
894ce41180
8 changed files with 46 additions and 18 deletions
|
|
@ -1078,6 +1078,7 @@ void ProjectExportDialog::_bind_methods() {
|
|||
|
||||
ProjectExportDialog::ProjectExportDialog() {
|
||||
set_title(TTR("Export"));
|
||||
set_clamp_to_embedder(true);
|
||||
|
||||
VBoxContainer *main_vb = memnew(VBoxContainer);
|
||||
main_vb->connect("theme_changed", callable_mp(this, &ProjectExportDialog::_theme_changed));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue