]> source.dussan.org Git - tigervnc.git/commitdiff
Don't show the context menu hint when no hotkey 894/head
authorSamuel Mannehed <samuel@cendio.se>
Fri, 25 Oct 2019 08:26:16 +0000 (10:26 +0200)
committerSamuel Mannehed <samuel@cendio.se>
Fri, 25 Oct 2019 08:26:16 +0000 (10:26 +0200)
vncviewer/DesktopWindow.cxx

index 1b666f945c922e4a1aa485da72bc1e6d80ab0f73..47fd3dbea2b9af956415f5b7ede3c828308de2d2 100644 (file)
@@ -536,8 +536,11 @@ void DesktopWindow::menuOverlay(void* data)
   DesktopWindow *self;
 
   self = (DesktopWindow*)data;
-  self->setOverlay(_("Press %s to open the context menu"),
-                   (const char*)menuKey);
+
+  if (strcmp((const char*)menuKey, "") != 0) {
+    self->setOverlay(_("Press %s to open the context menu"),
+                     (const char*)menuKey);
+  }
 }
 
 void DesktopWindow::setOverlay(const char* text, ...)