diff options
| author | Marc Jeanmougin <marc@jeanmougin.fr> | 2015-10-03 14:09:07 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2015-10-03 14:09:07 +0000 |
| commit | 8a5fcb84747766ff098bbc21080a24a74bce2973 (patch) | |
| tree | 21ac03d4656990167d9a5ef2591961c2010f4190 /src/ui/tools/tool-base.cpp | |
| parent | Crash. Fix for Bug #1404934 (Crash when opening files (Glib::ConvertError exc... (diff) | |
| download | inkscape-8a5fcb84747766ff098bbc21080a24a74bce2973.tar.gz inkscape-8a5fcb84747766ff098bbc21080a24a74bce2973.zip | |
Fix for r14372 bug
Fixed bugs:
- https://launchpad.net/bugs/1401593
(bzr r14394)
Diffstat (limited to 'src/ui/tools/tool-base.cpp')
| -rw-r--r-- | src/ui/tools/tool-base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/tools/tool-base.cpp b/src/ui/tools/tool-base.cpp index b5ffb9e7a..bf7b61b61 100644 --- a/src/ui/tools/tool-base.cpp +++ b/src/ui/tools/tool-base.cpp @@ -741,7 +741,7 @@ bool ToolBase::root_handler(GdkEvent* event) { switch (get_group0_keyval(&event->key)) { case GDK_KEY_space: - if (within_tolerance || !allow_panning) { + if (within_tolerance) { // Space was pressed, but not panned sp_toggle_selector(desktop); |
