From f5d1c3857f1e6be1184a50b18e98586abe9c0e48 Mon Sep 17 00:00:00 2001 From: Craig Watson Date: Tue, 8 Dec 2015 08:39:34 +0100 Subject: [PATCH] Rotating the protractor now sets cursor as rotation cursor --- src/tools/UBGraphicsProtractor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tools/UBGraphicsProtractor.cpp b/src/tools/UBGraphicsProtractor.cpp index 5b4b09ef..228e873d 100644 --- a/src/tools/UBGraphicsProtractor.cpp +++ b/src/tools/UBGraphicsProtractor.cpp @@ -326,6 +326,8 @@ void UBGraphicsProtractor::hoverMoveEvent(QGraphicsSceneHoverEvent *event) if (currentTool == Move) setCursor(Qt::SizeAllCursor); + else if (currentTool == Rotate) + setCursor(rotateCursor()); else setCursor(Qt::ArrowCursor);