1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2024-12-16 10:38:53 +01:00

Sort settings pages

This commit is contained in:
Jonas Kvinge 2020-05-08 20:25:02 +02:00
parent 079b684388
commit 355d436d29
2 changed files with 11 additions and 11 deletions

View File

@ -60,14 +60,14 @@
#include "collectionsettingspage.h"
#include "backendsettingspage.h"
#include "playlistsettingspage.h"
#include "appearancesettingspage.h"
#include "contextsettingspage.h"
#include "scrobblersettingspage.h"
#include "notificationssettingspage.h"
#include "shortcutssettingspage.h"
#include "lyricssettingspage.h"
#include "transcodersettingspage.h"
#include "networkproxysettingspage.h"
#include "lyricssettingspage.h"
#include "appearancesettingspage.h"
#include "contextsettingspage.h"
#include "notificationssettingspage.h"
#include "shortcutssettingspage.h"
#ifdef HAVE_MOODBAR
# include "moodbarsettingspage.h"
#endif
@ -131,6 +131,7 @@ SettingsDialog::SettingsDialog(Application *app, QMainWindow *mainwindow, QWidge
AddPage(Page_Backend, new BackendSettingsPage(this), general);
AddPage(Page_Playlist, new PlaylistSettingsPage(this), general);
AddPage(Page_Scrobbler, new ScrobblerSettingsPage(this), general);
AddPage(Page_Lyrics, new LyricsSettingsPage(this), general);
#ifdef HAVE_GSTREAMER
AddPage(Page_Transcoding, new TranscoderSettingsPage(this), general);
#endif
@ -139,7 +140,6 @@ SettingsDialog::SettingsDialog(Application *app, QMainWindow *mainwindow, QWidge
QTreeWidgetItem *iface = AddCategory(tr("User interface"));
AddPage(Page_Appearance, new AppearanceSettingsPage(this), iface);
AddPage(Page_Context, new ContextSettingsPage(this), iface);
AddPage(Page_Lyrics, new LyricsSettingsPage(this), iface);
AddPage(Page_Notifications, new NotificationsSettingsPage(this), iface);
#ifdef HAVE_GLOBALSHORTCUTS

View File

@ -78,14 +78,14 @@ class SettingsDialog : public QDialog {
Page_Backend,
Page_Playback,
Page_Playlist,
Page_GlobalShortcuts,
Page_Appearance,
Page_Context,
Page_Scrobbler,
Page_Lyrics,
Page_Notifications,
Page_Transcoding,
Page_Proxy,
Page_Scrobbler,
Page_Appearance,
Page_Context,
Page_Notifications,
Page_GlobalShortcuts,
Page_Moodbar,
Page_Subsonic,
Page_Tidal,