X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifytrimamount.cpp;h=c28031eed655e87f4bcbbbb563f01258d1640e31;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=65666c82c203f99af5ff0395ef42a0602e69920b;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifytrimamount.cpp b/src/actions/rs_actionmodifytrimamount.cpp index 65666c8..c28031e 100644 --- a/src/actions/rs_actionmodifytrimamount.cpp +++ b/src/actions/rs_actionmodifytrimamount.cpp @@ -65,7 +65,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e) trimCoord = graphicView->toGraph(e->x(), e->y()); trimEntity = catchEntity(e); - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { switch (getStatus()) { @@ -93,7 +93,7 @@ void RS_ActionModifyTrimAmount::mouseReleaseEvent(QMouseEvent * e) break; } } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deleteSnapper(); init(getStatus() - 1);