summaryrefslogtreecommitdiff
path: root/Userland/Applications/SoundPlayer
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-05-29 12:21:05 +0100
committerAndreas Kling <kling@serenityos.org>2022-05-29 15:27:03 +0200
commit0c3db153cf252a26df30fd65209e2f37344c06ba (patch)
treeea1d5e0de2fff0d24ce392d65a39f680025c46d7 /Userland/Applications/SoundPlayer
parent094487b5d49f9a0a647c25a560d1e1562407b252 (diff)
downloadserenity-0c3db153cf252a26df30fd65209e2f37344c06ba.zip
SoundPlayer: Insert separator after play/stop and back/next buttons
Diffstat (limited to 'Userland/Applications/SoundPlayer')
-rw-r--r--Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp b/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp
index c57cff6c7b..bef376a83b 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<GUI::Label>();
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<GUI::Label>();
m_volume_label->set_fixed_width(30);