From: nds Date: Mon, 5 Oct 2015 08:58:26 +0000 (+0300) Subject: Issue #1010 In sketch edition, use the mouse cursor of the cursor theme instead of... X-Git-Tag: V_1.4.0_demo2~26 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=85555d0cd727107f1c6b4e01a17cf5b5226c354b;p=modules%2Fshaper.git 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. --- 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)