From 480c41ee69e00696a7db215d691597b85cd704df Mon Sep 17 00:00:00 2001 From: Bruno Heridet Date: Tue, 19 Feb 2013 20:27:53 +0000 Subject: [PATCH] fixed #873 function getFontSize() should be called getFontColor() git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2434 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 f61687e3..ccce19d0 100644 --- a/editor/svgcanvas.js +++ b/editor/svgcanvas.js @@ -7125,7 +7125,7 @@ this.setFontColor = function(val) { // Function: getFontColor // Returns the current font color -this.getFontSize = function() { +this.getFontColor = function() { return cur_text.fill; };