summaryrefslogtreecommitdiffstats
path: root/editor/localization_editor.cpp
diff options
context:
space:
mode:
authorPucklaMotzer09 <jonaas.pucher000000@gmail.com>2022-01-04 11:32:08 +0100
committerPucklaMotzer09 <jonaas.pucher000000@gmail.com>2022-08-02 12:38:37 +0200
commite6b049641572f9df332196aab219d7d6280740bd (patch)
treee4285f90a640d7366d6b4dfd6b51b91e61712a9d /editor/localization_editor.cpp
parent897d02e2a055cecbc88f30004d633c182957ac49 (diff)
downloadredot-engine-e6b049641572f9df332196aab219d7d6280740bd.tar.gz
Show that resources of remaps can not be found
Diffstat (limited to 'editor/localization_editor.cpp')
-rw-r--r--editor/localization_editor.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/editor/localization_editor.cpp b/editor/localization_editor.cpp
index 533eabd8f2..bd486b1930 100644
--- a/editor/localization_editor.cpp
+++ b/editor/localization_editor.cpp
@@ -489,6 +489,13 @@ void LocalizationEditor::update_translations() {
t->set_tooltip(0, keys[i]);
t->set_metadata(0, keys[i]);
t->add_button(0, get_theme_icon(SNAME("Remove"), SNAME("EditorIcons")), 0, false, TTR("Remove"));
+
+ // Display that it has been removed if this is the case.
+ if (!FileAccess::exists(keys[i])) {
+ t->set_text(0, t->get_text(0) + vformat(" (%s)", TTR("Removed")));
+ t->set_tooltip(0, vformat(TTR("%s cannot be found."), t->get_tooltip(0)));
+ }
+
if (keys[i] == remap_selected) {
t->select(0);
translation_res_option_add_button->set_disabled(false);