From 2f56146242d58663ca28c3af6f74e743366062a1 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 12 Jan 2020 18:19:08 +0100 Subject: Increase the size of the item list editor popup This makes it easier to edit large amounts of items. This partially addresses https://github.com/godotengine/godot-proposals/issues/368. --- editor/plugins/item_list_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3