summaryrefslogtreecommitdiffstats
path: root/src/knotholder.cpp
diff options
context:
space:
mode:
authorDiederik van Lierop <mail@diedenrezi.nl>2009-03-09 20:19:01 +0000
committerdvlierop2 <dvlierop2@users.sourceforge.net>2009-03-09 20:19:01 +0000
commita50bbcf0ee5b96e54cc956339a427bc3330df228 (patch)
treeecacf9e73822a8432a5d73af531a93d78f62aa06 /src/knotholder.cpp
parentYet another round of translation update (diff)
downloadinkscape-a50bbcf0ee5b96e54cc956339a427bc3330df228.tar.gz
inkscape-a50bbcf0ee5b96e54cc956339a427bc3330df228.zip
Fix #338838, in which zooming and panning with the middle mouse button made Inkscape inrespronsive
(bzr r7461)
Diffstat (limited to 'src/knotholder.cpp')
-rw-r--r--src/knotholder.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/knotholder.cpp b/src/knotholder.cpp
index eaf5658f8..60c1f8084 100644
--- a/src/knotholder.cpp
+++ b/src/knotholder.cpp
@@ -139,7 +139,7 @@ KnotHolder::knot_moved_handler(SPKnot *knot, Geom::Point const &p, guint state)
{
if (this->dragging == false) {
this->dragging = true;
- sp_canvas_set_snap_delay_active(desktop->canvas, true);
+ //sp_canvas_set_snap_delay_active(desktop->canvas, true);
}
// this was a local change and the knotholder does not need to be recreated:
@@ -165,7 +165,7 @@ void
KnotHolder::knot_ungrabbed_handler(SPKnot */*knot*/)
{
this->dragging = false;
- sp_canvas_set_snap_delay_active(desktop->canvas, false);
+ //sp_canvas_set_snap_delay_active(desktop->canvas, false);
if (this->released) {
this->released(this->item);