From 3244cf0837ae7baf9bcb29e85b99a9b4a41f33ce Mon Sep 17 00:00:00 2001 From: Jim Broadus Date: Mon, 22 Mar 2021 10:54:01 -0700 Subject: [PATCH] settings: Recategorize background stream settings Move the background streams settings page to the general category. --- src/ui/settingsdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/settingsdialog.cpp b/src/ui/settingsdialog.cpp index a47d79720..84c83e22d 100644 --- a/src/ui/settingsdialog.cpp +++ b/src/ui/settingsdialog.cpp @@ -139,6 +139,8 @@ SettingsDialog::SettingsDialog(Application* app, BackgroundStreams* streams, AddPage(Page_Playback, new PlaybackSettingsPage(this), general); AddPage(Page_Behaviour, new BehaviourSettingsPage(this), general); AddPage(Page_Library, new LibrarySettingsPage(this), general); + AddPage(Page_BackgroundStreams, new BackgroundStreamsSettingsPage(this), + general); AddPage(Page_Proxy, new NetworkProxySettingsPage(this), general); AddPage(Page_Transcoding, new TranscoderSettingsPage(this), general); AddPage(Page_NetworkRemote, new NetworkRemoteSettingsPage(this), general); @@ -194,8 +196,6 @@ SettingsDialog::SettingsDialog(Application* app, BackgroundStreams* streams, AddPage(Page_Magnatune, new MagnatuneSettingsPage(this), providers); AddPage(Page_DigitallyImported, new DigitallyImportedSettingsPage(this), providers); - AddPage(Page_BackgroundStreams, new BackgroundStreamsSettingsPage(this), - providers); AddPage(Page_Subsonic, new SubsonicSettingsPage(this), providers); AddPage(Page_Podcasts, new PodcastSettingsPage(this), providers); AddPage(Page_RadioBrowser, new RadioBrowserSettingsPage(this), providers);