Remove Traylayout from the Inkscape plugin

as the two stage input does not work with the INkspace plugin system
This commit is contained in:
Florian Festi 2017-03-03 22:19:42 +01:00
parent 6cae3d7dc7
commit 0398c3ae98
1 changed files with 3 additions and 0 deletions

View File

@ -123,6 +123,9 @@ class Boxes2INX:
def writeAllINX(self, path):
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)
if __name__=="__main__":