diff options
author | kobewi <kobewi4e@gmail.com> | 2023-08-13 02:33:39 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-09-03 19:58:18 +0200 |
commit | 6de34fde27f650f738a1e46992f1b783f2cf9e76 (patch) | |
tree | a1c1785f2c20e8874d622aae75ff70be43192ece /editor/plugins/shader_file_editor_plugin.cpp | |
parent | fa3428ff25bc577d2a3433090478a6d615567056 (diff) | |
download | redot-engine-6de34fde27f650f738a1e46992f1b783f2cf9e76.tar.gz |
Add EditorStringNames singleton
Diffstat (limited to 'editor/plugins/shader_file_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/shader_file_editor_plugin.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/editor/plugins/shader_file_editor_plugin.cpp b/editor/plugins/shader_file_editor_plugin.cpp index b0e532b136..11bec4f61c 100644 --- a/editor/plugins/shader_file_editor_plugin.cpp +++ b/editor/plugins/shader_file_editor_plugin.cpp @@ -37,6 +37,7 @@ #include "editor/editor_node.h" #include "editor/editor_scale.h" #include "editor/editor_settings.h" +#include "editor/editor_string_names.h" #include "scene/gui/item_list.h" #include "scene/gui/split_container.h" #include "servers/display_server.h" @@ -67,9 +68,9 @@ void ShaderFileEditor::_version_selected(int p_option) { Ref<Texture2D> icon; if (bytecode->get_stage_compile_error(RD::ShaderStage(i)) != String()) { - icon = get_theme_icon(SNAME("ImportFail"), SNAME("EditorIcons")); + icon = get_editor_theme_icon(SNAME("ImportFail")); } else { - icon = get_theme_icon(SNAME("ImportCheck"), SNAME("EditorIcons")); + icon = get_editor_theme_icon(SNAME("ImportCheck")); } stages[i]->set_icon(icon); @@ -96,7 +97,7 @@ void ShaderFileEditor::_version_selected(int p_option) { String error = bytecode->get_stage_compile_error(stage); - error_text->push_font(get_theme_font(SNAME("source"), SNAME("EditorFonts"))); + error_text->push_font(get_theme_font(SNAME("source"), EditorStringName(EditorFonts))); if (error.is_empty()) { error_text->add_text(TTR("Shader stage compiled without errors.")); @@ -112,7 +113,7 @@ void ShaderFileEditor::_update_options() { stage_hb->hide(); versions->hide(); error_text->clear(); - error_text->push_font(get_theme_font(SNAME("source"), SNAME("EditorFonts"))); + error_text->push_font(get_theme_font(SNAME("source"), EditorStringName(EditorFonts))); error_text->add_text(vformat(TTR("File structure for '%s' contains unrecoverable errors:\n\n"), shader_file->get_path().get_file())); error_text->add_text(shader_file->get_base_error()); return; @@ -155,9 +156,9 @@ void ShaderFileEditor::_update_options() { } if (failed) { - icon = get_theme_icon(SNAME("ImportFail"), SNAME("EditorIcons")); + icon = get_editor_theme_icon(SNAME("ImportFail")); } else { - icon = get_theme_icon(SNAME("ImportCheck"), SNAME("EditorIcons")); + icon = get_editor_theme_icon(SNAME("ImportCheck")); } versions->add_item(title, icon); |