X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actioninfodist.cpp;h=a63ea037d9f3d2da821e360f11a3097755ae5445;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=2c3a6ad07fde133705850742ff8f9889d1c8e078;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actioninfodist.cpp b/src/actions/rs_actioninfodist.cpp index 2c3a6ad..a63ea03 100644 --- a/src/actions/rs_actioninfodist.cpp +++ b/src/actions/rs_actioninfodist.cpp @@ -86,12 +86,12 @@ void RS_ActionInfoDist::mouseMoveEvent(QMouseEvent * e) void RS_ActionInfoDist::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(); deleteSnapper();