aboutsummaryrefslogtreecommitdiff
path: root/src-qt5
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5')
-rw-r--r--src-qt5/core/lumina-desktop/SettingsMenu.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src-qt5/core/lumina-desktop/SettingsMenu.cpp b/src-qt5/core/lumina-desktop/SettingsMenu.cpp
index 80ef3042..58208931 100644
--- a/src-qt5/core/lumina-desktop/SettingsMenu.cpp
+++ b/src-qt5/core/lumina-desktop/SettingsMenu.cpp
@@ -30,12 +30,16 @@ void SettingsMenu::UpdateMenu(){
QAction *act = new QAction(LXDG::findIcon("preferences-desktop-screensaver",""), tr("Screensaver"), this);
act->setWhatsThis("xscreensaver-demo");
this->addAction(act);
- act = new QAction( LXDG::findIcon("preferences-desktop",""), tr("Desktop"), this);
- act->setWhatsThis("lumina-config");
+ act = new QAction( LXDG::findIcon("preferences-desktop-wallpaper",""), tr("Wallpaper"), this);
+ act->setWhatsThis("lumina-config --page wallpaper");
this->addAction(act);
act = new QAction( LXDG::findIcon("preferences-other",""), tr("Display"), this);
act->setWhatsThis("lumina-xconfig");
this->addAction(act);
+ act = new QAction( LXDG::findIcon("preferences-desktop",""), tr("All Desktop Settings"), this);
+ act->setWhatsThis("lumina-config");
+ this->addAction(act);
+ this->addSeparator();
/*QString qtconfig = LOS::QtConfigShortcut();
if(QFile::exists(qtconfig) && !qtconfig.isEmpty()){
act = new QAction( LXDG::findIcon("preferences-desktop-theme",""), tr("Window Theme"), this);
@@ -52,7 +56,6 @@ void SettingsMenu::UpdateMenu(){
this->addAction(act);
}
}
- this->addSeparator();
act = new QAction( LXDG::findIcon("lumina",""), tr("About Lumina"), this);
act->setWhatsThis("lumina-info");
this->addAction(act);
bgstack15