diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-28 12:35:48 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-28 12:35:48 -0500 |
commit | 09ffe0e5e565f3fd8a8d98502508bebb94e1a63e (patch) | |
tree | f34dd309525642f1366503175445bc51a9142092 /lumina-desktop/SettingsMenu.cpp | |
parent | Also add the lumina-info utility to the i18n-projects file (so it gets added ... (diff) | |
download | lumina-09ffe0e5e565f3fd8a8d98502508bebb94e1a63e.tar.gz lumina-09ffe0e5e565f3fd8a8d98502508bebb94e1a63e.tar.bz2 lumina-09ffe0e5e565f3fd8a8d98502508bebb94e1a63e.zip |
Add knowledge of the lumina-info utility to the Lumina desktop (userbutton, config menu). Also make sure that there is a *.desktop shortcut for the application (and update the pkg-plist)
Also allow for "-<something>" to be put in the version number without messing up the version checking routine, and tag the current version on the master branch as 0.8.2-devel (once the stable/official release is branched, the "-devel" tag will get either dropped or changed to "-release" in that branch, with the master branch moving on to the next <version>-devel)
Diffstat (limited to 'lumina-desktop/SettingsMenu.cpp')
-rw-r--r-- | lumina-desktop/SettingsMenu.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lumina-desktop/SettingsMenu.cpp b/lumina-desktop/SettingsMenu.cpp index d6b07ee4..8c989600 100644 --- a/lumina-desktop/SettingsMenu.cpp +++ b/lumina-desktop/SettingsMenu.cpp @@ -44,7 +44,11 @@ void SettingsMenu::InitMenu(){ act->setWhatsThis("lumina-open \""+CONTROLPANEL+"\""); this->addAction(act); } - } + } + this->addSeparator(); + act = new QAction( LXDG::findIcon("lumina",""), tr("About Lumina"), this); + act->setWhatsThis("lumina-info"); + this->addAction(act); } void SettingsMenu::runApp(QAction* act){ |