From 59a535c3359a32fbfb67164c65551c3e662f5919 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Mon, 11 Nov 2024 23:20:23 +0000 Subject: [PATCH] Ignore stem hints in editor Though it would be neat if it could display them. --- editor | 1 + 1 file changed, 1 insertion(+) diff --git a/editor b/editor index d2d1b38..5674b57 100755 --- a/editor +++ b/editor @@ -116,6 +116,7 @@ class EditorGui: except: if word == "rmoveto": self.rmoveto() elif word == "rlineto": self.rlineto() + elif word in ("hstem", "vstem"): self.stack = [] elif word == "endchar": pass else: print("unknown charstring component " + repr(word)) -- 2.30.2