aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-12-01 14:47:40 -0500
committerKen Moore <moorekou@gmail.com>2015-12-01 14:47:40 -0500
commit382aec6efa0b9c21cbbe9db93c1c29a3efe6d73f (patch)
tree9679d9f72221652d69401b77126457056a3a3dd1 /lumina-desktop
parentRe-do the "App Menu" plugin a bit. Now it uses a self-contained menu with a "... (diff)
downloadlumina-382aec6efa0b9c21cbbe9db93c1c29a3efe6d73f.tar.gz
lumina-382aec6efa0b9c21cbbe9db93c1c29a3efe6d73f.tar.bz2
lumina-382aec6efa0b9c21cbbe9db93c1c29a3efe6d73f.zip
Oops - fix an issue with opening the home dir from the new appmenu.
Diffstat (limited to 'lumina-desktop')
-rw-r--r--lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
index 928a93d9..f2d55c5e 100644
--- a/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
+++ b/lumina-desktop/panel-plugins/appmenu/LAppMenuPlugin.cpp
@@ -57,7 +57,7 @@ void LAppMenuPlugin::UpdateMenu(){
bool ok; //for checking inputs
//Add link to the file manager
QAction *tmpact = mainmenu->addAction( LXDG::findIcon("user-home", ""), tr("Browse Files") );
- tmpact->setWhatsThis("~");
+ tmpact->setWhatsThis("\""+QDir::homePath()+"\"");
//--Look for the app store
XDGDesktop store = LXDG::loadDesktopFile(LOS::AppStoreShortcut(), ok);
if(ok){
bgstack15