From c9f2288bdd5a37cf4e330e8ddad95b7925b8dd12 Mon Sep 17 00:00:00 2001 From: Me Here Date: Sat, 30 May 2026 07:53:00 -0500 Subject: [PATCH] =?UTF-8?q?0.0.16=20fix:=20strip=20the=20two=20stray=20?= =?UTF-8?q?=E2=98=B0=20characters=20from=20app.py=20comments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previous build aborted at the ASCII guard; the .mpy on the server didn't update. This adds the patch as a new commit (no history rewrite). Co-Authored-By: Claude Opus 4.7 (1M context) --- pico-cp/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pico-cp/app.py b/pico-cp/app.py index b403369..54b305a 100644 --- a/pico-cp/app.py +++ b/pico-cp/app.py @@ -650,7 +650,7 @@ class App: self._close_overlay() # tapped outside a button -> cancel / done def _handle_tap(self, tx, ty): if self._overlay: self._tap_overlay(tx, ty); return - x0, y0, x1, y1 = self._menu_bbox # hamburger ☰ -> main menu + x0, y0, x1, y1 = self._menu_bbox # hamburger -> main menu if x0 <= tx <= x1 and y0 <= ty <= y1: self._show_menu(); return if 112 <= ty <= 126: # set-list tab line if tx > WIDTH - 56: self.toggle_continue() # right end = CONT (auto-advance) toggle @@ -734,7 +734,7 @@ class App: self._lane_dirty(False) def _edit_done(self): self._close_overlay() - # ---------- hamburger ☰ menu (main) + sub-modals (Settings / Help / About) ---------- + # ---------- hamburger menu (main) + sub-modals (Settings / Help / About) ---------- def _show_menu(self): self._overlay = 'menu'; self._draw_menu() def _draw_menu(self):