diff --git a/src/core/Commands.cpp b/src/core/Commands.cpp index 3dcf616..6246e55 100644 --- a/src/core/Commands.cpp +++ b/src/core/Commands.cpp @@ -326,12 +326,12 @@ FlipShapeCommand::FlipShapeCommand(MapperGLCanvas *canvas, TransformShapeCommand _transform.translate(+center.x(), +center.y()); if (direction == MShape::Horizontal) { - setText(QObject::tr("Flipped Horizontally")); + setText(QObject::tr("Flip Horizontally")); _transform.scale(-1, 1); } - if (direction == MShape::Vertical) { - setText(QObject::tr("Flipped Vertically")); + else if (direction == MShape::Vertical) { + setText(QObject::tr("Flip Vertically")); _transform.scale(1, -1); } _transform.translate(-center.x(), -center.y());