summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ff88af6)
raw | patch | inline | side by side (parent: ff88af6)
author | Diederik van Lierop <mailat-signdiedenrezidotnl> | |
Tue, 23 Feb 2010 20:47:07 +0000 (21:47 +0100) | ||
committer | Diederik van Lierop <mailat-signdiedenrezidotnl> | |
Tue, 23 Feb 2010 20:47:07 +0000 (21:47 +0100) |
src/pen-context.cpp | patch | blob | history |
diff --git a/src/pen-context.cpp b/src/pen-context.cpp
index bb52b1950cd2e3661bbe7b9642271173b6be1cee..6e545be9d77cfcbaa5ace9b4019f8c151394a580 100644 (file)
--- a/src/pen-context.cpp
+++ b/src/pen-context.cpp
@@ -1331,6 +1331,7 @@ spdc_pen_finish_segment(SPPenContext *const pc, Geom::Point const p, guint const
if (pc->polylines_paraxial) {
pen_last_paraxial_dir = pen_next_paraxial_direction(pc, p, pc->p[0], state);
}
+
++pc->num_clicks;
if (!pc->red_curve->is_empty()) {
* horizontal or vertical segment; for all subsequent mouse clicks, we use the direction
* orthogonal to the last one; pressing Shift toggles the direction
*/
- if (pc->num_clicks == 0) {
+ // num_clicks is not reliable because spdc_pen_finish_segment is sometimes called too early
+ // (on first mouse release), in which case num_clicks immediately becomes 1.
+ // if (pc->num_clicks == 0) {
+
+ if (pc->green_curve->is_empty()) {
// first mouse click
double dist_h = fabs(pt[Geom::X] - origin[Geom::X]);
double dist_v = fabs(pt[Geom::Y] - origin[Geom::Y]);