diff options
author | Noshyaar <poommetee@protonmail.com> | 2017-12-25 08:23:06 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-25 08:23:06 +0700 |
commit | 3e4836567b462fdd5160bf1f176a4928be97c36b (patch) | |
tree | 658227bfe6bf5c283b78ef3292688d6db0a0bab1 /editor/project_settings_editor.cpp | |
parent | b3fb982d6bfaa6d3e20682afb884b4614e476800 (diff) | |
parent | e86454fb385994a874944790abfb4c03121ded0a (diff) |
Merge pull request #14908 from YeldhamDev/dialog_changes
Fixes and modifications for some dialogs
Diffstat (limited to 'editor/project_settings_editor.cpp')
-rw-r--r-- | editor/project_settings_editor.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp index 6f8573cd70..e69577489e 100644 --- a/editor/project_settings_editor.cpp +++ b/editor/project_settings_editor.cpp @@ -1460,7 +1460,6 @@ void ProjectSettingsEditor::_update_translations() { t2->set_editable(1, true); t2->set_metadata(1, path); int idx = langs.find(locale); - //print_line("find " + locale + " at " + itos(idx)); if (idx < 0) idx = 0; @@ -1709,7 +1708,6 @@ ProjectSettingsEditor::ProjectSettingsEditor(EditorData *p_data) { add = memnew(Button); hbc->add_child(add); - add->set_custom_minimum_size(Size2(150, 0) * EDSCALE); add->set_text(TTR("Add")); add->set_disabled(true); add->connect("pressed", this, "_action_add"); |