diff options
| author | John Bintz <me@johnbintz.com> | 2006-09-04 15:51:48 +0000 |
|---|---|---|
| committer | johncoswell <johncoswell@users.sourceforge.net> | 2006-09-04 15:51:48 +0000 |
| commit | 1c369e16aeb5bacbfc1df38220b58a032caeb83b (patch) | |
| tree | ccefaad7a38469cabcbd38628c83cadee2747925 /src/nodepath.h | |
| parent | added ui for mental's calligraphy tool cap rounding (diff) | |
| download | inkscape-1c369e16aeb5bacbfc1df38220b58a032caeb83b.tar.gz inkscape-1c369e16aeb5bacbfc1df38220b58a032caeb83b.zip | |
Fix race condition where node dragging is not ended after mouse button is released
(bzr r1681)
Diffstat (limited to 'src/nodepath.h')
| -rw-r--r-- | src/nodepath.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nodepath.h b/src/nodepath.h index 21c2957aa..856740038 100644 --- a/src/nodepath.h +++ b/src/nodepath.h @@ -228,6 +228,9 @@ class Node { /** The pointer to the nodeside which we are dragging out with Shift */ NodeSide *dragging_out; + + /** Boolean. Am I being dragged? */ + guint is_dragging : 1; }; } // namespace NodePath |
