Fixed issue #454. Crash: using CRTL+Z while using line tool.

--HG--
branch : release
This commit is contained in:
Roman Telezhynskyi 2016-03-06 13:08:27 +02:00
parent 3f67f77658
commit 86acf37482
2 changed files with 13 additions and 0 deletions

View file

@ -1,4 +1,5 @@
# Version 0.4.3 # Version 0.4.3
- [#454] Crash: using CRTL+Z while using line tool
- Fixed broken saving pattern description. - Fixed broken saving pattern description.
- Fixed UI bug. Release a dialog size for deploying a formula field. - Fixed UI bug. Release a dialog size for deploying a formula field.
- Fixed broken formula when for system locale thousand separator is a space. - Fixed broken formula when for system locale thousand separator is a space.

View file

@ -1635,6 +1635,12 @@ void MainWindow::CancelTool()
ui->actionArrowTool->setChecked(false); ui->actionArrowTool->setChecked(false);
helpLabel->setText(""); helpLabel->setText("");
ui->actionStopTool->setEnabled(true); ui->actionStopTool->setEnabled(true);
// Crash: using CRTL+Z while using line tool.
// related bug report:
// https://bitbucket.org/dismine/valentina/issues/454/crash-using-crtl-z-while-using-line-tool
undoAction->setEnabled(false);
redoAction->setEnabled(false);
return; return;
case Tool::BasePoint: case Tool::BasePoint:
Q_UNREACHABLE(); //-V501 Q_UNREACHABLE(); //-V501
@ -1732,6 +1738,12 @@ void MainWindow::CancelTool()
} }
currentScene->setFocus(Qt::OtherFocusReason); currentScene->setFocus(Qt::OtherFocusReason);
currentScene->clearSelection(); currentScene->clearSelection();
// Crash: using CRTL+Z while using line tool.
// related bug report:
// https://bitbucket.org/dismine/valentina/issues/454/crash-using-crtl-z-while-using-line-tool
undoAction->setEnabled(qApp->getUndoStack()->canUndo());
redoAction->setEnabled(qApp->getUndoStack()->canRedo());
} }
//--------------------------------------------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------------------------------------