X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionlibraryinsert.cpp;h=2447d8f9d89a63aa76e5eda436359ec6b01cb352;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=4fdab2ff80b04d5a1efdcb2a0574b17af57a7dd6;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionlibraryinsert.cpp b/src/actions/rs_actionlibraryinsert.cpp index 4fdab2f..2447d8f 100644 --- a/src/actions/rs_actionlibraryinsert.cpp +++ b/src/actions/rs_actionlibraryinsert.cpp @@ -124,12 +124,12 @@ void RS_ActionLibraryInsert::mouseMoveEvent(QMouseEvent * e) void RS_ActionLibraryInsert::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);