diff options
| author | Diederik van Lierop <mailat-signdiedenrezidotnl> | 2010-03-12 22:36:33 +0000 |
|---|---|---|
| committer | Diederik van Lierop <mailat-signdiedenrezidotnl> | 2010-03-12 22:36:33 +0000 |
| commit | d7f4efae8430f61f21081469626c8a460fd60b38 (patch) | |
| tree | b2389f669a4cb1720c0e6dcd1e3dd64f357b4462 /src/display/sp-canvas.cpp | |
| parent | Fixed and improved Win32 installer bzr revno detection with inkscape-version.... (diff) | |
| download | inkscape-d7f4efae8430f61f21081469626c8a460fd60b38.tar.gz inkscape-d7f4efae8430f61f21081469626c8a460fd60b38.zip | |
Fix crash in spray tool caused by rev. 9158
Fixed bugs:
- https://launchpad.net/bugs/537249
(bzr r9181)
Diffstat (limited to 'src/display/sp-canvas.cpp')
| -rw-r--r-- | src/display/sp-canvas.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/display/sp-canvas.cpp b/src/display/sp-canvas.cpp index 658276841..446066d93 100644 --- a/src/display/sp-canvas.cpp +++ b/src/display/sp-canvas.cpp @@ -1332,7 +1332,7 @@ emit_event (SPCanvas *canvas, GdkEvent *event) // lost event. We can't wait for idle events to have current_item updated, we need it now! // Otherwise, scrolling when hovering above a pre-snap indicator won't work (for example) // See this bug report: https://bugs.launchpad.net/inkscape/+bug/522335/comments/8 - while (canvas->need_repick) { + if (canvas->need_repick && !canvas->in_repick) { canvas->need_repick = FALSE; pick_current_item (canvas, (GdkEvent *) event); } |
