diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-07-31 19:35:46 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2021-07-31 19:35:46 -0300 |
commit | fb07cc88326a5709a60a6e48a6770f1860be2f97 (patch) | |
tree | d76321a60cf4e7f86cec373a507c66c44db08de6 /editor | |
parent | 1f6a81ceeac80ce95b5f686756c557b1be19a8b8 (diff) |
Fix being able to add duplicate files in the Localization editor
Diffstat (limited to 'editor')
-rw-r--r-- | editor/localization_editor.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/editor/localization_editor.cpp b/editor/localization_editor.cpp index b32ea67d4d..3fe1aa557d 100644 --- a/editor/localization_editor.cpp +++ b/editor/localization_editor.cpp @@ -371,15 +371,10 @@ void LocalizationEditor::_translation_filter_mode_changed(int p_mode) { void LocalizationEditor::_pot_add(const PackedStringArray &p_paths) { PackedStringArray pot_translations = ProjectSettings::get_singleton()->get("internationalization/locale/translations_pot_files"); - for (int i = 0; i < p_paths.size(); i++) { - for (int j = 0; j < pot_translations.size(); j++) { - if (pot_translations[j] == p_paths[i]) { - continue; //exists - } + if (!pot_translations.has(p_paths[i])) { + pot_translations.push_back(p_paths[i]); } - - pot_translations.push_back(p_paths[i]); } undo_redo->create_action(vformat(TTR("Add %d file(s) for POT generation"), p_paths.size())); |