summaryrefslogtreecommitdiffstats
path: root/editor/editor_autoload_settings.cpp
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-09-13 13:14:07 +0200
committerYuri Sizov <yuris@humnom.net>2023-09-15 14:51:01 +0200
commit8ecc0c4f47f78874d94ad701cea4ea0173bddbb2 (patch)
tree6230a9b3228bf84812d054f16e728bb9b4a31f34 /editor/editor_autoload_settings.cpp
parent6e11fcb92cda87322ab91f5a53e8a230ff1b994f (diff)
downloadredot-engine-8ecc0c4f47f78874d94ad701cea4ea0173bddbb2.tar.gz
Fix accessing editor theme items throughout the UI
This also exposes `EditorInterface::get_editor_theme`.
Diffstat (limited to 'editor/editor_autoload_settings.cpp')
-rw-r--r--editor/editor_autoload_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_autoload_settings.cpp b/editor/editor_autoload_settings.cpp
index 57172142e3..24daab3c12 100644
--- a/editor/editor_autoload_settings.cpp
+++ b/editor/editor_autoload_settings.cpp
@@ -882,7 +882,7 @@ EditorAutoloadSettings::EditorAutoloadSettings() {
error_message = memnew(Label);
error_message->hide();
error_message->set_horizontal_alignment(HORIZONTAL_ALIGNMENT_RIGHT);
- error_message->add_theme_color_override("font_color", EditorNode::get_singleton()->get_gui_base()->get_theme_color(SNAME("error_color"), EditorStringName(Editor)));
+ error_message->add_theme_color_override("font_color", EditorNode::get_singleton()->get_editor_theme()->get_color(SNAME("error_color"), EditorStringName(Editor)));
add_child(error_message);
Label *l = memnew(Label);