SoundPlayer: Insert separator after play/stop and back/next buttons

This commit is contained in:
Linus Groh 2022-05-29 12:21:05 +01:00 committed by Andreas Kling
parent 094487b5d4
commit 0c3db153cf

View file

@ -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);