From c379582f3f4225f6b71de6a2fd55faa55413413e Mon Sep 17 00:00:00 2001 From: James Carr Date: Sat, 24 Jul 2021 23:36:28 +0100 Subject: [PATCH 1/3] Remove execute bit --- CLUE_I_Ching/christopher_done_24.bdf | 0 CLUE_I_Ching/clue_iching.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 CLUE_I_Ching/christopher_done_24.bdf mode change 100755 => 100644 CLUE_I_Ching/clue_iching.py diff --git a/CLUE_I_Ching/christopher_done_24.bdf b/CLUE_I_Ching/christopher_done_24.bdf old mode 100755 new mode 100644 diff --git a/CLUE_I_Ching/clue_iching.py b/CLUE_I_Ching/clue_iching.py old mode 100755 new mode 100644 From 4ec0dd9e286a90e9cfb366abaeb8c17889296a16 Mon Sep 17 00:00:00 2001 From: James Carr Date: Sat, 24 Jul 2021 23:39:22 +0100 Subject: [PATCH 2/3] Remove max_size usage with displayio.Group --- CLUE_I_Ching/clue_iching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLUE_I_Ching/clue_iching.py b/CLUE_I_Ching/clue_iching.py index a983cc9fe..cb9e204bc 100644 --- a/CLUE_I_Ching/clue_iching.py +++ b/CLUE_I_Ching/clue_iching.py @@ -61,7 +61,7 @@ tile_width = 11, tile_height = 2) -hexagram = displayio.Group(max_size=1, x=60, y=15, scale=10) +hexagram = displayio.Group(x=60, y=15, scale=10) hexagram.append(tile_grid) # Hexagram name label From c1abafcef37e22dfd3420a31d89cb8ec66280709 Mon Sep 17 00:00:00 2001 From: James Carr Date: Sun, 25 Jul 2021 19:45:14 +0100 Subject: [PATCH 3/3] Update the anchor_point --- CLUE_I_Ching/clue_iching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLUE_I_Ching/clue_iching.py b/CLUE_I_Ching/clue_iching.py index cb9e204bc..e3d87ba1a 100644 --- a/CLUE_I_Ching/clue_iching.py +++ b/CLUE_I_Ching/clue_iching.py @@ -71,7 +71,7 @@ hexname = label.Label(font, text=" "*40, color=FONT_COLOR) # this will initially hold the "shake for reading" message hexname.text = " SHAKE\n FOR\nREADING" -hexname.anchor_point = (0.5, 0.0) +hexname.anchor_point = (0.5, 0.5) hexname.anchored_position = (120, 120) # Set up main display group (splash)