diff options
author | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-11-19 01:14:09 +0400 |
---|---|---|
committer | passivestar <60579014+passivestar@users.noreply.github.com> | 2024-11-19 01:14:09 +0400 |
commit | edd6acdfd4f00bd9476054b534df74c003d010de (patch) | |
tree | 5fa1d64a85d81a14503470b8b12e00ec88ece9b2 /editor/themes | |
parent | fd4c29a189e53a1e085df5b9b9a05cac9351b3ef (diff) | |
download | redot-engine-edd6acdfd4f00bd9476054b534df74c003d010de.tar.gz |
Expose state machine focus color to theming
Diffstat (limited to 'editor/themes')
-rw-r--r-- | editor/themes/editor_theme_manager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp index 32079f3753..a4251bfd29 100644 --- a/editor/themes/editor_theme_manager.cpp +++ b/editor/themes/editor_theme_manager.cpp @@ -2506,6 +2506,7 @@ void EditorThemeManager::_populate_editor_styles(const Ref<EditorTheme> &p_theme p_theme->set_color("transition_icon_disabled_color", "GraphStateMachine", Color(1, 1, 1, 0.2)); p_theme->set_color("highlight_color", "GraphStateMachine", p_config.accent_color); p_theme->set_color("highlight_disabled_color", "GraphStateMachine", p_config.accent_color * Color(1, 1, 1, 0.6)); + p_theme->set_color("focus_color", "GraphStateMachine", p_config.accent_color); p_theme->set_color("guideline_color", "GraphStateMachine", p_config.font_color * Color(1, 1, 1, 0.3)); p_theme->set_color("playback_color", "GraphStateMachine", p_config.font_color); |