summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorMartin Owens <doctormo@gmail.com>2013-06-25 15:56:37 +0000
committerMartin Owens <doctormo@gmail.com>2013-06-25 15:56:37 +0000
commit0e23bb12f20c122c8985757d6e32ca3ebc075fb2 (patch)
tree55fc5af3ea34e198ee1c4c438a010eb964e5b144 /src/verbs.cpp
parentCorrectly ignore symbolic link to ltmain.sh (diff)
parentRemoved hard coded keybinding from event-context.cpp and added the appropiate... (diff)
downloadinkscape-0e23bb12f20c122c8985757d6e32ca3ebc075fb2.tar.gz
inkscape-0e23bb12f20c122c8985757d6e32ca3ebc075fb2.zip
Merge in: remove-hard-coded-toggle-dropper-keybinding
Fixed bugs: - https://launchpad.net/bugs/180192 (bzr r12388)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 6f83b3dfb..3fdb97365 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -47,6 +47,7 @@
#include "document.h"
#include "draw-context.h"
#include "extension/effect.h"
+#include "event-context.h"
#include "file.h"
#include "gradient-drag.h"
#include "helper/action.h"
@@ -1560,7 +1561,7 @@ void ContextVerb::perform(SPAction *action, void *data)
tools_switch(dt, TOOLS_MEASURE);
break;
case SP_VERB_CONTEXT_DROPPER:
- tools_switch(dt, TOOLS_DROPPER);
+ sp_toggle_dropper(dt); // Functionality defined in event-context.cpp
break;
case SP_VERB_CONTEXT_CONNECTOR:
tools_switch(dt, TOOLS_CONNECTOR);