From 85555d0cd727107f1c6b4e01a17cf5b5226c354b Mon Sep 17 00:00:00 2001 From: nds Date: Mon, 5 Oct 2015 11:58:26 +0300 Subject: [PATCH] Issue #1010 In sketch edition, use the mouse cursor of the cursor theme instead of a custom cross cursor Using the standard Qt cursor symbol. --- src/PartSet/PartSet_SketcherMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PartSet/PartSet_SketcherMgr.cpp b/src/PartSet/PartSet_SketcherMgr.cpp index dc983a46a..c1a80e4bd 100644 --- a/src/PartSet/PartSet_SketcherMgr.cpp +++ b/src/PartSet/PartSet_SketcherMgr.cpp @@ -920,7 +920,7 @@ void PartSet_SketcherMgr::startNestedSketch(ModuleBase_Operation* theOperation) { connectToPropertyPanel(true); if (isNestedCreateOperation(theOperation)) - QApplication::setOverrideCursor(QCursor(QIcon(":pictures/button_plus.png").pixmap(20,20))); + QApplication::setOverrideCursor(QCursor(Qt::CrossCursor));//QIcon(":pictures/button_plus.png").pixmap(20,20))); } void PartSet_SketcherMgr::stopNestedSketch(ModuleBase_Operation* theOp) -- 2.39.2