diff -r 94719518e310 -r cd4df75924b7 src/ui/canvas.cpp --- a/src/ui/canvas.cpp Sun May 16 22:41:00 2021 +0300 +++ b/src/ui/canvas.cpp Mon Jul 19 19:28:16 2021 +0300 @@ -89,6 +89,9 @@ void Canvas::mouseReleaseEvent(QMouseEvent* event) { + MouseClickInfo info; + info.click = this->totalMouseMove < (2.0 / sqrt(2)) * 5.0; + emit mouseClick(info); if (this->totalMouseMove < (2.0 / sqrt(2)) * 5.0) { if (this->highlighted == ldraw::NULL_ID)