summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-01-13 09:14:02 +0100
committerGitHub <noreply@github.com>2020-01-13 09:14:02 +0100
commit7a15569c6fdc403818ae4ccc2e21c152859316db (patch)
tree0c82d553a62d107036d0714364a9c33bc6b9b001
parent8130decfe4b4be31d3bf8ca9c519927052a942fc (diff)
parent2f56146242d58663ca28c3af6f74e743366062a1 (diff)
Merge pull request #35050 from Calinou/enlarge-item-list-editor
Increase the size of the item list editor popup
-rw-r--r--editor/plugins/item_list_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/item_list_editor_plugin.cpp b/editor/plugins/item_list_editor_plugin.cpp
index 39dc130f42..9f836ed0d3 100644
--- a/editor/plugins/item_list_editor_plugin.cpp
+++ b/editor/plugins/item_list_editor_plugin.cpp
@@ -302,7 +302,7 @@ void ItemListEditor::_delete_pressed() {
void ItemListEditor::_edit_items() {
- dialog->popup_centered(Vector2(300, 400) * EDSCALE);
+ dialog->popup_centered_clamped(Vector2(425, 1200) * EDSCALE, 0.8);
}
void ItemListEditor::edit(Node *p_item_list) {