diff --git a/ChangeLog.txt b/ChangeLog.txt index 5cc781714..c65ac180f 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -28,6 +28,7 @@ - [#939] Calling Formula Wizard through property explorer doesn't refresh formula. - [#937] Wrong symmetrical seam corners on pieces. - [#942] Save Layout mode ignores paper format for tiled PDF. +- [#954] Valentina produces empty rotation operation. # Version 0.6.1 October 23, 2018 - [#885] Regression. Broken support for multi size measurements. diff --git a/src/libs/vtools/dialogs/tools/dialogrotation.cpp b/src/libs/vtools/dialogs/tools/dialogrotation.cpp index 92d658e08..c43d50f2a 100644 --- a/src/libs/vtools/dialogs/tools/dialogrotation.cpp +++ b/src/libs/vtools/dialogs/tools/dialogrotation.cpp @@ -249,10 +249,18 @@ void DialogRotation::ChosenObject(quint32 id, const SceneObject &type) if (objects.contains(id)) { - // It's not really logical for a user that a center of rotation no need to select. - // To fix this issue we just silently remove it from the list. - objects.removeOne(id); - operation->SetObjects(objects.toVector()); + if (objects.size() > 1) + { + // It's not really logical for a user that a center of rotation no need to select. + // To fix this issue we just silently remove it from the list. + objects.removeOne(id); + operation->SetObjects(objects.toVector()); + } + else + { + emit ToolTip(tr("This point cannot be origin point. Please, select another origin point")); + return; + } } if (SetObject(id, ui->comboBoxOriginPoint, QString()))