summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-04-23 20:21:31 -0300
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-04-23 20:21:31 -0300
commitdac9a5ba9662e10ab7b2b2dac08bcef3c6aa37d9 (patch)
treebc78e90938e42b8c4e231b0c94de4fa1618ab0e4
parent80f91c9d3664ab8dd226a3708e36886381e4508b (diff)
Fix "Name" popup's size in theme editor
-rw-r--r--editor/plugins/theme_editor_plugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_plugin.cpp b/editor/plugins/theme_editor_plugin.cpp
index 0bbffc8a0b..7c8e69ae70 100644
--- a/editor/plugins/theme_editor_plugin.cpp
+++ b/editor/plugins/theme_editor_plugin.cpp
@@ -86,7 +86,7 @@ void ThemeEditor::_name_menu_about_to_show() {
}
name_menu->get_popup()->clear();
-
+ name_menu->get_popup()->set_size(Size2());
for (List<StringName>::Element *E = names.front(); E; E = E->next()) {
name_menu->get_popup()->add_item(E->get());