summaryrefslogtreecommitdiffstats
path: root/src/ui/tool/node-tool.cpp
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-11-25 20:14:15 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-11-25 20:14:15 +0000
commit3bf84c3c6b6faf95269ad33739f2439984030a84 (patch)
treee9c3bbb9ed1dbd134eb2a9aa0e676cef0c5c2807 /src/ui/tool/node-tool.cpp
parentPatch for bug #588181 (Eraser: eraser stroke is drawn after clicking canvas b... (diff)
parentFix Bug #447385 - Drag'n'drop from swatches doesn't always work (diff)
downloadinkscape-3bf84c3c6b6faf95269ad33739f2439984030a84.tar.gz
inkscape-3bf84c3c6b6faf95269ad33739f2439984030a84.zip
Fix drag & drop from swatches - patch by Adonis Papaderos
Fixed bugs: - https://launchpad.net/bugs/447385 (bzr r9919)
Diffstat (limited to 'src/ui/tool/node-tool.cpp')
-rw-r--r--src/ui/tool/node-tool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tool/node-tool.cpp b/src/ui/tool/node-tool.cpp
index 9809ee848..e046fb573 100644
--- a/src/ui/tool/node-tool.cpp
+++ b/src/ui/tool/node-tool.cpp
@@ -567,13 +567,13 @@ void ink_node_tool_update_tip(InkNodeTool *nt, GdkEvent *event)
// TRANSLATORS: The %s below is where the "%u of %u nodes selected" sentence gets put
char *dyntip = g_strdup_printf(C_("Node tool tip",
"%s Drag to select nodes, click to edit only this object (more: Shift)"),
- nodestring, sz, total);
+ nodestring);
nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE, dyntip);
g_free(dyntip);
} else {
char *dyntip = g_strdup_printf(C_("Node tool tip",
"%s Drag to select nodes, click clear the selection"),
- nodestring, sz, total);
+ nodestring);
nt->_node_message_context->set(Inkscape::NORMAL_MESSAGE, dyntip);
g_free(dyntip);
}