From fa410de76d814ceea1953621ed5ec26361d659be Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Sun, 3 Jan 2016 11:52:22 +0200 Subject: [PATCH] Fixed issue #432. Cannot switch between pattern pieces on latest develop (osx). --HG-- branch : develop --- src/app/valentina/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index f6246f6f4..b96f10dae 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -2513,7 +2513,10 @@ void MainWindow::Layout() else { listDetails.clear(); - ActionDraw(true); + if (not ui->actionDraw->isChecked()) + { + ActionDraw(true); + } SetLayoutModeActions(false); } }