mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-01 07:52:50 +00:00
SoundPlayer: Insert separator after play/stop and back/next buttons
This commit is contained in:
parent
094487b5d4
commit
0c3db153cf
Notes:
sideshowbarker
2024-07-17 10:35:55 +09:00
Author: https://github.com/linusg
Commit: 0c3db153cf
Pull-request: https://github.com/SerenityOS/serenity/pull/14133
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue