summaryrefslogtreecommitdiffstats
path: root/editor/themes
diff options
context:
space:
mode:
authorpassivestar <60579014+passivestar@users.noreply.github.com>2024-06-23 23:33:31 +0400
committerpassivestar <60579014+passivestar@users.noreply.github.com>2024-06-23 23:33:31 +0400
commitea5fe1df81cf1f185627e95f0cbddb5c5fde6113 (patch)
tree108d84f9589b55dbb05711a322a2b1b5d18ac335 /editor/themes
parent04bf7d4cade645a5923cc80d87ac1c6109e2cdfe (diff)
downloadredot-engine-ea5fe1df81cf1f185627e95f0cbddb5c5fde6113.tar.gz
Add missing RTL styles for MainScreenButton
Diffstat (limited to 'editor/themes')
-rw-r--r--editor/themes/editor_theme_manager.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/themes/editor_theme_manager.cpp b/editor/themes/editor_theme_manager.cpp
index b6697b6d2c..445bc89751 100644
--- a/editor/themes/editor_theme_manager.cpp
+++ b/editor/themes/editor_theme_manager.cpp
@@ -1817,9 +1817,13 @@ void EditorThemeManager::_populate_editor_styles(const Ref<EditorTheme> &p_theme
main_screen_button_hover->set_content_margin((Side)i, p_config.button_style_hover->get_content_margin((Side)i));
}
p_theme->set_stylebox(CoreStringName(normal), "MainScreenButton", menu_transparent_style);
+ p_theme->set_stylebox("normal_mirrored", "MainScreenButton", menu_transparent_style);
p_theme->set_stylebox(SceneStringName(pressed), "MainScreenButton", menu_transparent_style);
+ p_theme->set_stylebox("pressed_mirrored", "MainScreenButton", menu_transparent_style);
p_theme->set_stylebox("hover", "MainScreenButton", main_screen_button_hover);
+ p_theme->set_stylebox("hover_mirrored", "MainScreenButton", main_screen_button_hover);
p_theme->set_stylebox("hover_pressed", "MainScreenButton", main_screen_button_hover);
+ p_theme->set_stylebox("hover_pressed_mirrored", "MainScreenButton", main_screen_button_hover);
p_theme->set_type_variation("MainMenuBar", "FlatMenuButton");
p_theme->set_stylebox(CoreStringName(normal), "MainMenuBar", menu_transparent_style);