aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop
diff options
context:
space:
mode:
authorWeblate <noreply@weblate.org>2017-02-27 12:10:38 +0000
committerWeblate <noreply@weblate.org>2017-02-27 12:10:38 +0000
commitb8ba6937cf1294a6e48706611c23577c01cc2d26 (patch)
treed4c4ddc3cda6bac8d52e95929e651c713c2d6cea /src-qt5/core/lumina-desktop
parentTranslated using Weblate (lumina_OPEN@da (generated)) (diff)
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-b8ba6937cf1294a6e48706611c23577c01cc2d26.tar.gz
lumina-b8ba6937cf1294a6e48706611c23577c01cc2d26.tar.bz2
lumina-b8ba6937cf1294a6e48706611c23577c01cc2d26.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'src-qt5/core/lumina-desktop')
-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