From 619f8b5d9173f2bcc9d9aefccee832d686724e79 Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Mon, 17 Oct 2016 15:04:09 +0200 Subject: Add option to scale mesh to fit in bounding box. (bzr r15173) --- share/icons/icons.svg | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'share') diff --git a/share/icons/icons.svg b/share/icons/icons.svg index 4a65cd3f1..5ceaac9bb 100644 --- a/share/icons/icons.svg +++ b/share/icons/icons.svg @@ -2509,7 +2509,7 @@ http://www.inkscape.org/ - + @@ -3950,11 +3950,11 @@ http://www.inkscape.org/ - - - - - + + + + + @@ -3965,6 +3965,10 @@ http://www.inkscape.org/ + + + + -- cgit v1.2.3 From cb93d88bd2110970609f05b1ab4cd58581ded4dd Mon Sep 17 00:00:00 2001 From: Nicolas Dufour Date: Tue, 18 Oct 2016 06:41:23 +0200 Subject: [Bug #1633999] xcf export fails if layer names contain non-ASCII characters. Fixed bugs: - https://launchpad.net/bugs/1633999 (bzr r15174) --- share/extensions/gimp_xcf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share') diff --git a/share/extensions/gimp_xcf.py b/share/extensions/gimp_xcf.py index 7dfdc0cc8..d79717828 100755 --- a/share/extensions/gimp_xcf.py +++ b/share/extensions/gimp_xcf.py @@ -176,7 +176,7 @@ class MyEffect(inkex.Effect): if os.name == 'nt': filename = filename.replace("\\", "/") pngs.append(filename) - names.append(name.encode('utf-8')) + names.append(name) if (self.valid == 0): self.clear_tmp() -- cgit v1.2.3