diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-12 21:09:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-12 21:09:49 +0100 |
commit | f5aff3f9d1bb29afd8d356c8f403a82f3b6fafbe (patch) | |
tree | 65f1ad5f070b8c646ecfc90b038eaa74be2c13e6 | |
parent | ef1d59cf1b3dd2d03ae9272550af7870e49b02ba (diff) | |
parent | 1ee516995f6e5b65e342b0ffe345b47a2eb99591 (diff) |
Merge pull request #55825 from zaevi/fix_PluginConfigDialog_UI
-rw-r--r-- | editor/plugin_config_dialog.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugin_config_dialog.cpp b/editor/plugin_config_dialog.cpp index c99b34e0c2..ad22aafb2b 100644 --- a/editor/plugin_config_dialog.cpp +++ b/editor/plugin_config_dialog.cpp @@ -216,6 +216,7 @@ void PluginConfigDialog::config(const String &p_config_path) { active_edit->hide(); Object::cast_to<Label>(active_edit->get_parent()->get_child(active_edit->get_index() - 2))->hide(); subfolder_edit->hide(); + subfolder_validation->hide(); Object::cast_to<Label>(subfolder_edit->get_parent()->get_child(subfolder_edit->get_index() - 2))->hide(); set_title(TTR("Edit a Plugin")); } else { @@ -224,6 +225,7 @@ void PluginConfigDialog::config(const String &p_config_path) { active_edit->show(); Object::cast_to<Label>(active_edit->get_parent()->get_child(active_edit->get_index() - 2))->show(); subfolder_edit->show(); + subfolder_validation->show(); Object::cast_to<Label>(subfolder_edit->get_parent()->get_child(subfolder_edit->get_index() - 2))->show(); set_title(TTR("Create a Plugin")); } |