From 82a6094b0a043c1ea75f88fbb73b46e55cc25298 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sat, 8 May 2021 23:42:21 -0500 Subject: [PATCH] bitwidgets: Add two more glyphs --- g13gui/bitwidgets/glyph.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/g13gui/bitwidgets/glyph.py b/g13gui/bitwidgets/glyph.py index bdc3e96..af8b891 100644 --- a/g13gui/bitwidgets/glyph.py +++ b/g13gui/bitwidgets/glyph.py @@ -10,6 +10,9 @@ class Glyphs(enum.Enum): UP_ARROW = [(2, 4), (2, 0), (4, 2), (0, 2), (2, 0)] CHECKMARK = [(0, 3), (1, 4), (4, 1), (1, 4)] XMARK = [(0, 0), (4, 4), (2, 2), (4, 0), (0, 4)] + CHEVRON_RIGHT = [(4, 2), (2, 0), (2, 4), (4, 2), (2, 2)] + WRENCH = [(0, 4), (0, 3), (2, 1), (2, 0), (3, 0), (4, 1), (4, 2), (3, 2), + (1, 4)] BLANK = [] BOUNDS = (5, 5)