1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

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.
This commit is contained in:
Hugo Locurcio
2020-01-12 18:19:08 +01:00
parent 269eb5f06c
commit 2f56146242

View File

@@ -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) {