AllEdges: Fix for new backend

This commit is contained in:
Florian Festi 2020-11-09 19:12:02 +01:00
parent 09b4de82de
commit 043f208213
1 changed files with 2 additions and 0 deletions

View File

@ -45,12 +45,14 @@ class AllEdges(Boxes):
for c in chars:
with self.saved_context():
self.move(0, 0, "", True)
self.moveTo(x, 0, 90)
self.edge(t+self.edges[c].startwidth())
self.corner(90)
self.edges[c](x, h=4*t)
self.corner(90)
self.edge(t+self.edges[c].endwidth())
self.move(0, 0, "")
self.moveTo(0, 3*t + self.edges[c].spacing())
self.text("%s - %s" % (c, self.edges[c].description))