This commit is contained in:
Leonardo Zide 2020-06-01 12:29:30 -07:00
parent 44fa79ecb6
commit cc68126a48
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,7 @@
#pragma once #pragma once
struct lcInstructionsPageLayout; //struct lcInstructionsPageLayout;
#include "lc_model.h"
class lcInstructionsPageWidget : public QGraphicsView class lcInstructionsPageWidget : public QGraphicsView
{ {

View file

@ -3020,6 +3020,9 @@ void lcModel::TransformSelectedObjects(lcTransformType TransformType, const lcVe
case lcTransformType::RelativeRotation: case lcTransformType::RelativeRotation:
RotateSelectedPieces(Transform, true, false, true, true); RotateSelectedPieces(Transform, true, false, true, true);
break; break;
case lcTransformType::Count:
break;
} }
} }