From 0ec27482935a5767b425167c9ed64e4374a5b916 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 13 Feb 2015 11:33:20 +0200 Subject: [PATCH] Don't allow move if we use tool. --HG-- branch : develop --- src/app/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/mainwindow.cpp b/src/app/mainwindow.cpp index 4684e8abd..80dd7f7fa 100644 --- a/src/app/mainwindow.cpp +++ b/src/app/mainwindow.cpp @@ -300,7 +300,7 @@ void MainWindow::SetToolButton(bool checked, Tool t, const QString &cursor, cons if (checked) { CancelTool(); - emit EnableItemMove(true); + emit EnableItemMove(false); tool = t; QPixmap pixmap(cursor); QCursor cur(pixmap, 2, 3);