Remove unused exportNoImage warning. Fix translation string when converting a use-symbol into a group
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1915 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
daa3dda356
commit
b34d721491
|
@ -7,6 +7,8 @@
|
|||
*/
|
||||
|
||||
/*
|
||||
TODO: consider renaming this package to "draw" and the class to "Drawing"
|
||||
|
||||
TODOs:
|
||||
|
||||
Phase 1:
|
||||
|
|
|
@ -490,7 +490,6 @@ var uiStrings = {
|
|||
"pathNodeTooltip": "Drag node to move it. Double-click node to change segment type",
|
||||
"pathCtrlPtTooltip": "Drag control point to adjust curve properties",
|
||||
"exportNoBlur": "Blurred elements will appear as un-blurred",
|
||||
"exportNoImage": "Image elements will not appear",
|
||||
"exportNoforeignObject": "foreignObject elements will not appear",
|
||||
"exportNoDashArray": "Strokes will appear filled",
|
||||
"exportNoText": "Text may not appear as expected"
|
||||
|
@ -6852,7 +6851,6 @@ this.setSvgString = function(xmlString) {
|
|||
this.importSvgString = function(xmlString) {
|
||||
|
||||
try {
|
||||
|
||||
// Get unique ID
|
||||
var uid = svgedit.utilities.encode64(xmlString.length + xmlString).substr(0,32);
|
||||
|
||||
|
@ -6937,9 +6935,9 @@ this.importSvgString = function(xmlString) {
|
|||
|
||||
|
||||
var use_el = svgdoc.createElementNS(svgns, "use");
|
||||
use_el.id = getNextId();
|
||||
setHref(use_el, "#" + symbol.id);
|
||||
|
||||
use_el.id = getNextId();
|
||||
(current_group || current_layer).appendChild(use_el);
|
||||
batchCmd.addSubCommand(new InsertElementCommand(use_el));
|
||||
clearSelection();
|
||||
|
|
Loading…
Reference in New Issue