summaryrefslogtreecommitdiffstats
path: root/editor/editor_run_native.cpp
diff options
context:
space:
mode:
authorMatt Enad <m22mail@comcast.net>2023-12-20 19:52:20 -0500
committerMatt Enad <m22mail@comcast.net>2024-02-16 14:49:44 -0500
commit5b5de0e1676bb96c34e4e3cd51f912ac159519a8 (patch)
treefce39bb1037214220bc3a546860d946448383433 /editor/editor_run_native.cpp
parente5a3fd1e53ad4e6efc1fd17deded8f4ce0973d10 (diff)
downloadredot-engine-5b5de0e1676bb96c34e4e3cd51f912ac159519a8.tar.gz
Add hover highlight to main editor buttons
Updates styling of the editor run bar, plugin, bottom panel, icon buttons, and main menu buttons for accessibility.
Diffstat (limited to 'editor/editor_run_native.cpp')
-rw-r--r--editor/editor_run_native.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_run_native.cpp b/editor/editor_run_native.cpp
index fd6b083c12..a380ebd4ad 100644
--- a/editor/editor_run_native.cpp
+++ b/editor/editor_run_native.cpp
@@ -157,6 +157,8 @@ bool EditorRunNative::is_deploy_debug_remote_enabled() const {
EditorRunNative::EditorRunNative() {
remote_debug = memnew(MenuButton);
+ remote_debug->set_flat(false);
+ remote_debug->set_theme_type_variation("RunBarButton");
remote_debug->get_popup()->connect("id_pressed", callable_mp(this, &EditorRunNative::start_run_native));
remote_debug->set_tooltip_text(TTR("Remote Debug"));
remote_debug->set_disabled(true);