X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondrawlinepolygon.cpp;h=c9761a634cb10b9495d4ed42c78340a81ed717cb;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=c32d062fead7ab1416e832f185765b77f3ac06ed;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actiondrawlinepolygon.cpp b/src/actions/rs_actiondrawlinepolygon.cpp index c32d062..c9761a6 100644 --- a/src/actions/rs_actiondrawlinepolygon.cpp +++ b/src/actions/rs_actiondrawlinepolygon.cpp @@ -85,12 +85,12 @@ void RS_ActionDrawLinePolygon::mouseMoveEvent(QMouseEvent * e) void RS_ActionDrawLinePolygon::mouseReleaseEvent(QMouseEvent * e) { - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { Vector ce(snapPoint(e)); coordinateEvent(&ce); } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deletePreview(); clearPreview();