X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actioneditcopy.cpp;h=02f0e2cd74f8f3139cd1a8bb79688f38cb44cf34;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=bbb70d6d9bf35e2886951d097a5a42f6f4ca7a22;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actioneditcopy.cpp b/src/actions/rs_actioneditcopy.cpp index bbb70d6..02f0e2c 100644 --- a/src/actions/rs_actioneditcopy.cpp +++ b/src/actions/rs_actioneditcopy.cpp @@ -59,12 +59,12 @@ void RS_ActionEditCopy::mouseMoveEvent(QMouseEvent * e) void RS_ActionEditCopy::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) { deleteSnapper(); init(getStatus() - 1);