Remove Traylayout from the Inkscape plugin
as the two stage input does not work with the INkspace plugin system
This commit is contained in:
parent
6cae3d7dc7
commit
0398c3ae98
|
@ -123,6 +123,9 @@ class Boxes2INX:
|
||||||
|
|
||||||
def writeAllINX(self, path):
|
def writeAllINX(self, path):
|
||||||
for name, box in self.boxes.items():
|
for name, box in self.boxes.items():
|
||||||
|
if name.startswith("TrayLayout"):
|
||||||
|
# The two stage thing does not work (yet?)
|
||||||
|
continue
|
||||||
self.writeINX(name, box, path)
|
self.writeINX(name, box, path)
|
||||||
|
|
||||||
if __name__=="__main__":
|
if __name__=="__main__":
|
||||||
|
|
Loading…
Reference in New Issue