We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095d591 commit 0dc743cCopy full SHA for 0dc743c
inkscape/svg2shenzhen/prepare.py
@@ -169,7 +169,9 @@ def prepareDocument(self, options):
169
white_layer.append(rect)
170
171
# Create the Selected Layers
172
- for key, value in reversed(kicadLayers.items()):
+ kicadLayersArray = list(kicadLayers.items());
173
+
174
+ for key, value in reversed(kicadLayersArray):
175
disabledValue = '%s-disabled' % (value)
176
selectedValue = getattr(options, key)
177
if selectedValue == "true" and value not in layers and disabledValue not in layers:
0 commit comments