Two SVG-Editor buglets

Should not be able to convert a foreignObject
to a path.
#foreignObject_panel should always be initially
invisible.
This commit is contained in:
Jacques Distler 2010-02-13 22:19:14 -06:00
parent c608cedab9
commit afcdc932ff
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
body {
body {
background: #D8D8D8;
}
@ -410,6 +410,7 @@
#svg_editor #line_panel,
#svg_editor #image_panel,
#svg_editor #text_panel,
#svg_editor #foreignObject_panel,
#svg_editor #path_node_panel {
display: none;
}

View file

@ -772,7 +772,7 @@ function svg_edit_setup() {
}
// Elements in this array cannot be converted to a path
var no_path = $.inArray(elname, ['image', 'text', 'path', 'g', 'use']) == -1;
var no_path = $.inArray(elname, ['image', 'text', 'path', 'g', 'use', 'foreignObject']) == -1;
$('#tool_topath').toggle(no_path);
$('#tool_reorient').toggle(elname == 'path');
$('#tool_reorient').toggleClass('disabled', angle == 0);