diff --git a/ChangeLog.txt b/ChangeLog.txt index f518fef6e..00e3cca65 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,6 @@ +# Version 0.4.5 +- [#435] Valentina doesn't change the cursor. + # Version 0.4.4 April 12, 2016 - Updated measurement templates with all measurements. Added new template Aldrich/Women measurements. - Updated description measurements N06 and N07. Add new measurements A23 and J10. diff --git a/src/app/valentina/mainwindow.cpp b/src/app/valentina/mainwindow.cpp index d18ac8f2c..171a0e0b3 100644 --- a/src/app/valentina/mainwindow.cpp +++ b/src/app/valentina/mainwindow.cpp @@ -1758,6 +1758,11 @@ void MainWindow::ArrowTool() ui->actionStopTool->setEnabled(false); currentTool = Tool::Arrow; emit EnableItemMove(true); + + // Fix issue #435. https://bitbucket.org/dismine/valentina/issues/435/error-valentina-doesnt-change-the-cursor + RestoreOverrideCursor(cursorArrowCloseHand); + RestoreOverrideCursor(cursorArrowOpenHand); + QCursor cur(Qt::ArrowCursor); ui->view->setCursor(cur); helpLabel->setText("");