Fix out of range crash on remapping files
This commit is contained in:
parent
aadbb66dc2
commit
bbcf26b7bf
@ -1227,7 +1227,7 @@ void ProjectSettingsEditor::_translation_res_option_changed() {
|
||||
ERR_FAIL_COND(!remaps.has(key));
|
||||
PoolStringArray r = remaps[key];
|
||||
ERR_FAIL_INDEX(idx, r.size());
|
||||
if (translation_locales_idxs_remap.size() > 0) {
|
||||
if (translation_locales_idxs_remap.size() > which) {
|
||||
r.set(idx, path + ":" + langs[translation_locales_idxs_remap[which]]);
|
||||
} else {
|
||||
r.set(idx, path + ":" + langs[which]);
|
||||
|
Loading…
Reference in New Issue
Block a user