X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Factions%2Frs_actionmodifybevel.cpp;h=652e447356fc8165e81729bb4b00f8467b2ed85b;hb=3f46c180da0806c9c263e6d87d0f1404632402da;hp=34fce8dea8935b3ef973ef80c0d8ef7d874d1281;hpb=ee048ce722e7beb53e702825bb3285cd5cacd8bb;p=architektonas diff --git a/src/actions/rs_actionmodifybevel.cpp b/src/actions/rs_actionmodifybevel.cpp index 34fce8d..652e447 100644 --- a/src/actions/rs_actionmodifybevel.cpp +++ b/src/actions/rs_actionmodifybevel.cpp @@ -95,7 +95,7 @@ void RS_ActionModifyBevel::mouseMoveEvent(QMouseEvent * e) void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent * e) { - if (RS2::qtToRsButtonState(e->button()) == RS2::LeftButton) + if (e->button() == Qt::LeftButton) { switch (getStatus()) { @@ -116,7 +116,7 @@ void RS_ActionModifyBevel::mouseReleaseEvent(QMouseEvent * e) break; } } - else if (RS2::qtToRsButtonState(e->button()) == RS2::RightButton) + else if (e->button() == Qt::RightButton) { deletePreview(); deleteSnapper();