From f930837ed787c3779ce5c073ed9b305c6e7d9c82 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 27 May 2021 18:07:52 +0100 Subject: [PATCH] SoundPlayer: Show app name as "Sound Player" when a file is loaded --- .../Applications/SoundPlayer/SoundPlayerWidgetAdvancedView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);