From 6b427e59ae34be73a149ecdd18bc4b3eecd6ccae Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Fri, 26 Feb 2016 10:12:23 -0800 Subject: [PATCH] show the overlays when the context menu is shown --- libraries/ui/src/OffscreenUi.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/ui/src/OffscreenUi.cpp b/libraries/ui/src/OffscreenUi.cpp index 1c41827795..999f9ef2f7 100644 --- a/libraries/ui/src/OffscreenUi.cpp +++ b/libraries/ui/src/OffscreenUi.cpp @@ -460,6 +460,7 @@ void OffscreenUi::unfocusWindows() { } void OffscreenUi::toggleMenu(const QPoint& screenPosition) { + emit showDesktop(); // we really only want to do this if you're showing the menu, but for now this works auto virtualPos = mapToVirtualScreen(screenPosition, nullptr); QMetaObject::invokeMethod(_desktop, "toggleMenu", Q_ARG(QVariant, virtualPos)); }