From adc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 07:09:02 -0500 Subject: 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. --- .../lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/core') 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 -- cgit