diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-27 18:07:52 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-27 18:07:52 +0100 |
commit | f930837ed787c3779ce5c073ed9b305c6e7d9c82 (patch) | |
tree | 59cb861abfea447350608ae89e9c61c38fa6fdb1 /Userland/Applications | |
parent | e87a9a7f9f0fcccfb222b737b55869ff86f6f30d (diff) | |
download | serenity-f930837ed787c3779ce5c073ed9b305c6e7d9c82.zip |
SoundPlayer: Show app name as "Sound Player" when a file is loaded
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp b/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp index 07c358700e..ffc7fb3511 100644 --- a/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp +++ b/Userland/Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp @@ -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); |