diff --git a/scripts/boxes2inkscape b/scripts/boxes2inkscape index d66192a..1f56090 100755 --- a/scripts/boxes2inkscape +++ b/scripts/boxes2inkscape @@ -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__":