changeset 251:3b5ea600829c

We should be able to switch tool mode at any time
author Chris Cannam
date Wed, 02 Apr 2014 09:03:42 +0100
parents e9a0b3fad713
children f99fae5fe89c
files src/MainWindow.cpp
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/MainWindow.cpp	Wed Apr 02 09:01:56 2014 +0100
+++ b/src/MainWindow.cpp	Wed Apr 02 09:03:42 2014 +0100
@@ -529,7 +529,6 @@
     action->setShortcut(tr("2"));
     action->setStatusTip(tr("Edit with Note Intelligence"));
     connect(action, SIGNAL(triggered()), this, SLOT(toolEditSelected()));
-    connect(this, SIGNAL(canEditLayer(bool)), action, SLOT(setEnabled(bool)));
     group->addAction(action);
     menu->addAction(action);
     m_keyReference->registerShortcut(action);
@@ -559,7 +558,6 @@
     action->setShortcut(tr("3"));
     action->setStatusTip(tr("Free Edit"));
     connect(action, SIGNAL(triggered()), this, SLOT(toolFreeEditSelected()));
-    connect(this, SIGNAL(canEditLayer(bool)), action, SLOT(setEnabled(bool)));
     group->addAction(action);
     m_keyReference->registerShortcut(action);
 */