diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-09-06 14:49:02 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-09-06 14:49:02 +0200 |
commit | 3c63dce3cd19f1cc7540418f9a45e4c38e78994e (patch) | |
tree | 72c2b81bc63bd4d254fbceb99fffd03a5eabedee /editor/import_dock.cpp | |
parent | bceac8c34f2cd6f9f156b3b1b9cbd012bc45d928 (diff) | |
parent | 6de34fde27f650f738a1e46992f1b783f2cf9e76 (diff) | |
download | redot-engine-3c63dce3cd19f1cc7540418f9a45e4c38e78994e.tar.gz |
Merge pull request #80573 from KoBeWi/2k_lines_of_changes_created_at_2AM
Add EditorStringNames singleton
Diffstat (limited to 'editor/import_dock.cpp')
-rw-r--r-- | editor/import_dock.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/import_dock.cpp b/editor/import_dock.cpp index 018231cda5..614047296a 100644 --- a/editor/import_dock.cpp +++ b/editor/import_dock.cpp @@ -35,6 +35,7 @@ #include "editor/editor_resource_preview.h" #include "editor/editor_scale.h" #include "editor/editor_settings.h" +#include "editor/editor_string_names.h" #include "editor/editor_undo_redo_manager.h" class ImportDockParameters : public Object { @@ -657,7 +658,7 @@ void ImportDock::_notification(int p_what) { case NOTIFICATION_ENTER_TREE: { import_opts->edit(params); - label_warning->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), SNAME("Editor"))); + label_warning->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), EditorStringName(Editor))); } break; } } @@ -670,7 +671,7 @@ void ImportDock::_set_dirty(bool p_dirty) { if (p_dirty) { // Add a dirty marker to notify the user that they should reimport the selected resource to see changes. import->set_text(TTR("Reimport") + " (*)"); - import->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), SNAME("Editor"))); + import->add_theme_color_override("font_color", get_theme_color(SNAME("warning_color"), EditorStringName(Editor))); import->set_tooltip_text(TTR("You have pending changes that haven't been applied yet. Click Reimport to apply changes made to the import options.\nSelecting another resource in the FileSystem dock without clicking Reimport first will discard changes made in the Import dock.")); } else { // Remove the dirty marker on the Reimport button. |