aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-02-27 12:10:52 +0000
committerWeblate <noreply@weblate.org>2017-02-27 12:10:52 +0000
commitf29f85000e26e680202baa95be9a6ba5612a6305 (patch)
tree832d0114496ba1792097a97e3c1a5f7cfc6fb8e6
parentTranslated using Weblate (lumina_SEARCH@da (generated)) (diff)
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-f29f85000e26e680202baa95be9a6ba5612a6305.tar.gz
lumina-f29f85000e26e680202baa95be9a6ba5612a6305.tar.bz2
lumina-f29f85000e26e680202baa95be9a6ba5612a6305.zip
Merge remote-tracking branch 'origin/master'
-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