Skip to content

Commit

Permalink
line tan2: fixed right click logic, bug#3546634
Browse files Browse the repository at this point in the history
  • Loading branch information
dxli committed Jul 29, 2012
1 parent b4b80b6 commit 90de085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librecad/src/actions/rs_actiondrawlinetangent2.cpp
Expand Up @@ -138,7 +138,7 @@ void RS_ActionDrawLineTangent2::mouseReleaseEvent(QMouseEvent* e) {

if (e->button()==Qt::RightButton) {
deletePreview();
if(getStatus()>0){
if(getStatus()>=0){
init(getStatus()-1);
if(circle1!=NULL){
circle1->setHighlighted(false);
Expand Down

0 comments on commit 90de085

Please sign in to comment.