mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:57:35 +00:00
SoundPlayer: Show app name as "Sound Player" when a file is loaded
This commit is contained in:
parent
e87a9a7f9f
commit
f930837ed7
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ void SoundPlayerWidgetAdvancedView::open_file(StringView path)
|
|||
"Filetype error", GUI::MessageBox::Type::Error);
|
||||
return;
|
||||
}
|
||||
m_window.set_title(String::formatted("{} - SoundPlayer", loader->file()->filename()));
|
||||
m_window.set_title(String::formatted("{} - Sound Player", loader->file()->filename()));
|
||||
m_playback_progress_slider->set_max(loader->total_samples());
|
||||
m_playback_progress_slider->set_enabled(true);
|
||||
m_play_button->set_enabled(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue