Fixed more bugs related to r505

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@506 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
Alexis Deveria
2009-08-31 15:59:42 +00:00
parent f311e73f0f
commit ee2e10565d

View File

@@ -564,9 +564,9 @@ function SvgCanvas(c)
font_family: 'serif'
});
var cur_properties = null;
var cur_shape = all_properties.shape;
var cur_text = all_properties.text;
var cur_properties = cur_shape;
var freehand_min_x = null;
var freehand_max_x = null;
@@ -2338,6 +2338,7 @@ function SvgCanvas(c)
this.setStrokeColor = function(val) {
cur_shape.stroke = val;
cur_properties.stroke_paint = {type:"solidColor"};
this.changeSelectedAttribute("stroke", val);
};
@@ -2347,7 +2348,7 @@ function SvgCanvas(c)
this.setFillColor = function(val) {
cur_properties.fill = val;
cur_properties.fill_paint = {type:"solidColor"};
// take out any path/line elements when setting fill
var elems = [];
var i = selectedElements.length;