X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actioneditpaste.cpp;h=e52a7d171e4ad6707b50f8150377130b52cbfa48;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=f4b7aa987d872c2be82b40df4eab1a79ee8ce518;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actioneditpaste.cpp b/src/actions/rs_actioneditpaste.cpp index f4b7aa9..e52a7d1 100644 --- a/src/actions/rs_actioneditpaste.cpp +++ b/src/actions/rs_actioneditpaste.cpp @@ -83,12 +83,12 @@ void RS_ActionEditPaste::mouseMoveEvent(QMouseEvent * e) void RS_ActionEditPaste::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);