From 0398c3ae980bd19a1420a54874da9500a5ea586b Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Fri, 3 Mar 2017 22:19:42 +0100 Subject: [PATCH] Remove Traylayout from the Inkscape plugin as the two stage input does not work with the INkspace plugin system --- scripts/boxes2inkscape | 3 +++ 1 file changed, 3 insertions(+) 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__":