diff options
author | Ken Moore <moorekou@gmail.com> | 2015-12-04 08:41:43 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-12-04 08:41:43 -0500 |
commit | 4cb42e27edd093948bf9cf61e516ff609938f4cb (patch) | |
tree | 4011dec2a72a2dabc158a04150603aac9205eb02 /lumina-desktop/LDesktopPluginSpace.cpp | |
parent | Merge branch 'master' of github.com:pcbsd/lumina (diff) | |
download | lumina-4cb42e27edd093948bf9cf61e516ff609938f4cb.tar.gz lumina-4cb42e27edd093948bf9cf61e516ff609938f4cb.tar.bz2 lumina-4cb42e27edd093948bf9cf61e516ff609938f4cb.zip |
Ensure that when a desktop item opens it's context menu it hides the main desktop's context menu (if visible).
Diffstat (limited to 'lumina-desktop/LDesktopPluginSpace.cpp')
-rw-r--r-- | lumina-desktop/LDesktopPluginSpace.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-desktop/LDesktopPluginSpace.cpp b/lumina-desktop/LDesktopPluginSpace.cpp index 28ff94a6..00d3c34c 100644 --- a/lumina-desktop/LDesktopPluginSpace.cpp +++ b/lumina-desktop/LDesktopPluginSpace.cpp @@ -132,6 +132,7 @@ void LDesktopPluginSpace::addDesktopPlugin(QString plugID){ connect(plug, SIGNAL(RemovePlugin(QString)), this, SLOT(RemoveItem(QString)) ); connect(plug, SIGNAL(IncreaseIconSize()), this, SIGNAL(IncreaseIcons()) ); connect(plug, SIGNAL(DecreaseIconSize()), this, SIGNAL(DecreaseIcons()) ); + connect(plug, SIGNAL(CloseDesktopMenu()), this, SIGNAL(HideDesktopMenu()) ); } } |