summaryrefslogtreecommitdiff
path: root/render-symbolic.rb
diff options
context:
space:
mode:
authorSam Hewitt <sam@snwh.org>2019-09-14 10:30:03 -0400
committerSam Hewitt <sam@snwh.org>2019-09-14 10:30:03 -0400
commitb27915ec8dab2378d467fc423dc806af50c4f4cf (patch)
treecd2a2c875cc875b310616b8d98634923c2c367bb /render-symbolic.rb
parent4b07f58bf29380bf65c3828122c07c61e53e285a (diff)
downloadadwaita-icon-theme-b27915ec8dab2378d467fc423dc806af50c4f4cf.tar.gz
symbolic: fix missing class errors
Diffstat (limited to 'render-symbolic.rb')
-rwxr-xr-xrender-symbolic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/render-symbolic.rb b/render-symbolic.rb
index a9a20a45a..218395417 100755
--- a/render-symbolic.rb
+++ b/render-symbolic.rb
@@ -45,7 +45,7 @@ def chopSVG(icon)
cmd = "#{INKSCAPE} -f #{icon[:file]} -z --vacuum-defs --export-plain-svg=#{icon[:file]} > /dev/null 2>&1"
system(cmd)
# remove as many extraneous elements as possible with SVGO
- cmd = "#{SVGO} --pretty --disable=convertShapeToPath -i #{icon[:file]} -o #{icon[:file]} > /dev/null 2>&1"
+ cmd = "#{SVGO} --pretty --disable=convertShapeToPath --enable=removeStyleElement -i #{icon[:file]} -o #{icon[:file]} > /dev/null 2>&1"
system(cmd)
else
puts " -- #{icon[:name]} already exists"