layers marked as (visible) will always be shown

This commit is contained in:
John Bintz 2013-11-17 12:04:45 -05:00
parent 543663e8f8
commit 991296bdbf
2 changed files with 6 additions and 2 deletions

View File

@ -25,7 +25,11 @@ module SVGGVS
current_parent = current_parent.parent current_parent = current_parent.parent
end end
else else
layer['style'] = 'display:none' layer['style'] = if layer['inkscape:label'].include?('(visible)')
''
else
'display:none'
end
end end
end end
end end

View File

@ -1,3 +1,3 @@
module Svggvs module Svggvs
VERSION = "0.0.1" VERSION = "0.0.2"
end end