From 50660b37b5a13c3d859e1263f7fe0f7a3251454e Mon Sep 17 00:00:00 2001 From: Alexis Deveria Date: Fri, 4 Feb 2011 18:49:12 +0000 Subject: [PATCH] Fixed Issue 721: Label box doesn't work as expected (for title element in groups) git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1980 eee81c28-f429-11dd-99c0-75d572ba1ddd --- editor/svg-editor.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/editor/svg-editor.js b/editor/svg-editor.js index 6b188353..21d55d76 100644 --- a/editor/svg-editor.js +++ b/editor/svg-editor.js @@ -1887,6 +1887,10 @@ } }); + $('#g_title').change(function() { + svgCanvas.setGroupTitle(this.value); + }); + $('.attr_changer').change(function() { var attr = this.getAttribute("data-attr"); var val = this.value;