freehand draw: slight logic improvement for first move

This commit is contained in:
Paul Davis 2023-08-19 13:33:52 -06:00
parent 3b9c63fbac
commit 5c423d3dda
1 changed files with 2 additions and 2 deletions

View File

@ -7301,9 +7301,9 @@ FreehandLineDrag<OrderedPointList,OrderedPoint>::motion (GdkEvent* ev, bool firs
/* Add a point correspding to the start of the drag */
maybe_add_point (ev, raw_grab_time(), true);
} else {
maybe_add_point (ev, _drags->current_pointer_time(), false);
}
maybe_add_point (ev, _drags->current_pointer_time(), first_move);
}
template<typename OrderedPointList, typename OrderedPoint>