Skip to content

Commit

Permalink
Fix: one more fix for crop area
Browse files Browse the repository at this point in the history
Another incorrectly returned variable due to recent configuration
change.
  • Loading branch information
DamirPorobic committed Mar 29, 2017
1 parent 1a7f7f7 commit fc6c942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/widgets/CaptureView.cpp
Expand Up @@ -334,7 +334,7 @@ QPointF CaptureView::restrictPointToScene(const QPointF& point) const
p.setY(sceneRect().bottom() - 1);
}

return point;
return p;
}

/*
Expand Down

0 comments on commit fc6c942

Please sign in to comment.