summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 592b4bd)
raw | patch | inline | side by side (parent: 592b4bd)
author | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Wed, 4 Mar 2009 21:53:51 +0000 (21:53 +0000) | ||
committer | dvlierop2 <dvlierop2@users.sourceforge.net> | |
Wed, 4 Mar 2009 21:53:51 +0000 (21:53 +0000) |
src/desktop-events.cpp | patch | blob | history |
diff --git a/src/desktop-events.cpp b/src/desktop-events.cpp
index a947e6f17a964fa94c29bf02802d2bca9c484976..8f5b53246a1169979e9f612e487ecd81d2c616f7 100644 (file)
--- a/src/desktop-events.cpp
+++ b/src/desktop-events.cpp
static bool dragging = false;
static SPCanvasItem *guide = NULL;
static Geom::Point normal;
+ static bool snap_delay_temporarily_active = false;
int wx, wy;
SPDesktop *desktop = dtw->desktop;
// In such a situation, we're already in that specific context and the snap delay is already active. We should
// not set the snap delay to active again, because that will trigger a similar warning to the one above
sp_canvas_set_snap_delay_active(desktop->canvas, true);
+ snap_delay_temporarily_active = true;
}
Geom::Point const event_w(sp_canvas_window_to_world(dtw->canvas, event_win));
@@ -179,6 +181,13 @@ static gint sp_dt_ruler_event(GtkWidget *widget, GdkEvent *event, SPDesktopWidge
m.guideSnap(event_dt, normal);
dragging = false;
+
+ // See the comments in GDK_BUTTON_PRESS
+ if (snap_delay_temporarily_active) {
+ sp_canvas_set_snap_delay_active(desktop->canvas, false);
+ snap_delay_temporarily_active = false;
+ }
+
gtk_object_destroy(GTK_OBJECT(guide));
guide = NULL;
if ((horiz ? wy : wx) >= 0) {