From 0c3db153cf252a26df30fd65209e2f37344c06ba Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 29 May 2022 12:21:05 +0100 Subject: [PATCH] SoundPlayer: Insert separator after play/stop and back/next buttons --- .../SoundPlayer/SoundPlayerWidgetAdvancedView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp b/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp index c57cff6c7bd..bef376a83b4 100644 --- a/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp +++ b/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp @@ -74,6 +74,8 @@ SoundPlayerWidgetAdvancedView::SoundPlayerWidgetAdvancedView(GUI::Window& window m_stop_action->set_enabled(false); menubar.add_action(*m_stop_action); + menubar.add_separator(); + m_timestamp_label = menubar.add(); m_timestamp_label->set_fixed_width(110); @@ -92,6 +94,8 @@ SoundPlayerWidgetAdvancedView::SoundPlayerWidgetAdvancedView(GUI::Window& window m_next_action->set_enabled(false); menubar.add_action(*m_next_action); + menubar.add_separator(); + m_volume_label = &menubar.add(); m_volume_label->set_fixed_width(30);