From 2d68e443f78a7c2b5ca93b544841d6fb29927656 Mon Sep 17 00:00:00 2001 From: Sofian Audry Date: Wed, 1 Apr 2020 18:48:21 -0400 Subject: [PATCH] Changed text for flip command. --- src/core/Commands.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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());