X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actiondrawlinepolygon2.cpp;h=8e260612bbab92ff3a9fd93972d7efe79e921608;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=feaa99f98f04a164ae39ec5b2d6b1942caddb825;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actiondrawlinepolygon2.cpp b/src/actions/rs_actiondrawlinepolygon2.cpp index feaa99f..8e26061 100644 --- a/src/actions/rs_actiondrawlinepolygon2.cpp +++ b/src/actions/rs_actiondrawlinepolygon2.cpp @@ -85,12 +85,12 @@ void RS_ActionDrawLinePolygon2::mouseMoveEvent(QMouseEvent * e) void RS_ActionDrawLinePolygon2::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();