summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-28 19:40:40 +0200
committerGitHub <noreply@github.com>2018-08-28 19:40:40 +0200
commitd42807371c667cc117460b01e9d1484f4418906f (patch)
treec02d34c334967b88a85771c3355d985cbe2292b1 /editor
parent6f9416b2b6cff4272f69bbf0cff80f2b2c01de1b (diff)
parentaded18104b84d2d9b4e72c00eed77c983b532b1e (diff)
Merge pull request #21537 from tko/itemlist-edit-scale
Scale the Item List Editor window size with the editor scale
Diffstat (limited to 'editor')
-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 f75fb0d109..1f0b4e9e97 100644
--- a/editor/plugins/item_list_editor_plugin.cpp
+++ b/editor/plugins/item_list_editor_plugin.cpp
@@ -296,7 +296,7 @@ void ItemListEditor::_delete_pressed() {
void ItemListEditor::_edit_items() {
- dialog->popup_centered(Vector2(300, 400));
+ dialog->popup_centered(Vector2(300, 400) * EDSCALE);
}
void ItemListEditor::edit(Node *p_item_list) {