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