From 276972ab7d862ed9e67394562ae9212b0e68dbc2 Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Wed, 26 Jan 2011 17:35:28 +0000 Subject: [PATCH] Fixed Issue 763: Drawing with the pencil tool fires two elementChanged events git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1938 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svgcanvas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/svgcanvas.js b/editor/svgcanvas.js index f5f2820a..afb8245b 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -4869,7 +4869,7 @@ var pathActions = canvas.pathActions = function() { "fill": "none" } }); - call("changed",[element]); + // No need to call "changed", as this is already done under mouseUp } return element; };