changeset 977:ce4793b2748a

Add half-wave rectification option to Colour 3D Plot layer
author Chris Cannam
date Fri, 22 May 2015 09:17:52 +0100
parents cd14405bdb15
children 92f610ae640d
files .hgsubstate main/MainWindow.cpp
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.hgsubstate	Thu May 21 15:34:23 2015 +0100
+++ b/.hgsubstate	Fri May 22 09:17:52 2015 +0100
@@ -2,4 +2,4 @@
 55ece8862b6d3a54aad271a53f9c1615e5d3bcf8 sv-dependency-builds
 1ab4ac6b2fcb8c8fd85716c8f1033b0ab780d53c svapp
 882d448c8a6da6a92202efcf7d5c68551091267a svcore
-4d54882bbf739b424afebd9c11f70cb9f07261ba svgui
+1c37aa13bfd843859345467ddcb23b6bdb981492 svgui
--- a/main/MainWindow.cpp	Thu May 21 15:34:23 2015 +0100
+++ b/main/MainWindow.cpp	Fri May 22 09:17:52 2015 +0100
@@ -569,10 +569,12 @@
     m_keyReference->registerShortcut(action);
     menu->addAction(action);
 
-    action = new QAction(tr("Export Annotation Layer..."), this);
+    action = new QAction(tr("Export Annotation La&yer..."), this);
+    action->setShortcut(tr("Ctrl+Y"));
     action->setStatusTip(tr("Export layer data to a file"));
     connect(action, SIGNAL(triggered()), this, SLOT(exportLayer()));
     connect(this, SIGNAL(canExportLayer(bool)), action, SLOT(setEnabled(bool)));
+    m_keyReference->registerShortcut(action);
     menu->addAction(action);
 
     menu->addSeparator();