summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiganzo <158825920+Giganzo@users.noreply.github.com>2024-09-17 13:00:11 +0200
committerGiganzo <158825920+Giganzo@users.noreply.github.com>2024-09-17 13:00:11 +0200
commit5d62e12fcbd46034dd06f91c2b20bdd366f3a0c9 (patch)
treec872fc65282426617fec1d75879678019a583417
parent74de05a01c8716a42d4e3427f607d7bea76b35e5 (diff)
downloadredot-engine-5d62e12fcbd46034dd06f91c2b20bdd366f3a0c9.tar.gz
Fix EditorAudioBus corner radius
-rw-r--r--editor/editor_audio_buses.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_audio_buses.cpp b/editor/editor_audio_buses.cpp
index c076c99cd3..de4e9240f6 100644
--- a/editor/editor_audio_buses.cpp
+++ b/editor/editor_audio_buses.cpp
@@ -127,7 +127,7 @@ void EditorAudioBus::_notification(int p_what) {
} else if (has_focus()) {
draw_style_box(get_theme_stylebox(SNAME("focus"), SNAME("Button")), Rect2(Vector2(), get_size()));
} else {
- draw_style_box(get_theme_stylebox(SceneStringName(panel), SNAME("TabContainer")), Rect2(Vector2(), get_size()));
+ draw_style_box(get_theme_stylebox(SNAME("BottomPanel"), EditorStringName(EditorStyles)), Rect2(Vector2(), get_size()));
}
if (get_index() != 0 && hovering_drop) {