From: Krzysztof KosiƄski Date: Thu, 25 Nov 2010 20:14:15 +0000 (+0100) Subject: Fix drag & drop from swatches - patch by Adonis Papaderos X-Git-Url: https://git.tokkee.org/?p=inkscape.git;a=commitdiff_plain;h=7e6016713f10ec0d60fae8e925978eba3c647c2b Fix drag & drop from swatches - patch by Adonis Papaderos --- 7e6016713f10ec0d60fae8e925978eba3c647c2b diff --cc src/ui/tool/node-tool.cpp index 9809ee848,9809ee848..e046fb573 --- a/src/ui/tool/node-tool.cpp +++ b/src/ui/tool/node-tool.cpp @@@ -567,13 -567,13 +567,13 @@@ void ink_node_tool_update_tip(InkNodeTo // 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); }