aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-02-27 07:09:02 -0500
committerKen Moore <ken@ixsystems.com>2017-02-27 07:09:02 -0500
commitadc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6 (patch)
treee101249a671a10537f6fe200ef91c239091a806c /src-qt5/core
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-adc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6.tar.gz
lumina-adc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6.tar.bz2
lumina-adc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6.zip
Oops - Fix a typo in the desktop applauncher plugin:
The comment field should have been put into the tooltip - not replace the "whatsThis" value. This will fix the desktop autmounter entries getting launched appropriately again.
Diffstat (limited to 'src-qt5/core')
-rw-r--r--src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
index 76b27787..14599c5d 100644
--- a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
+++ b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp
@@ -51,7 +51,7 @@ void AppLauncherPlugin::loadButton(){
}else{
button->setWhatsThis(file.filePath);
button->setIcon( QIcon(LXDG::findIcon(file.icon,"system-run").pixmap(QSize(icosize,icosize)).scaledToHeight(icosize, Qt::SmoothTransformation) ) );
- if(!file.comment.isEmpty()){button->setWhatsThis(file.comment); }
+ if(!file.comment.isEmpty()){button->setToolTip(file.comment); }
txt = file.name;
if(!watcher->files().isEmpty()){ watcher->removePaths(watcher->files()); }
watcher->addPath(file.filePath); //make sure to update this shortcut if the file changes
bgstack15