Skip to content

Commit

Permalink
Merge pull request godotengine#97113 from Giganzo/audio-corners
Browse files Browse the repository at this point in the history
Fix EditorAudioBus corner radius
  • Loading branch information
akien-mga committed Sep 17, 2024
2 parents 71b3221 + 5d62e12 commit 922ae7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/editor_audio_buses.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 922ae7e

Please sign in to comment.