0.0.16 fix: strip the two stray ☰ characters from app.py comments

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) <noreply@anthropic.com>
This commit is contained in:
Me Here 2026-05-30 07:53:00 -05:00
parent 5153e35a52
commit c9f2288bdd

View file

@ -650,7 +650,7 @@ class App:
self._close_overlay() # tapped outside a button -> cancel / done self._close_overlay() # tapped outside a button -> cancel / done
def _handle_tap(self, tx, ty): def _handle_tap(self, tx, ty):
if self._overlay: self._tap_overlay(tx, ty); return 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 x0 <= tx <= x1 and y0 <= ty <= y1: self._show_menu(); return
if 112 <= ty <= 126: # set-list tab line if 112 <= ty <= 126: # set-list tab line
if tx > WIDTH - 56: self.toggle_continue() # right end = CONT (auto-advance) toggle if tx > WIDTH - 56: self.toggle_continue() # right end = CONT (auto-advance) toggle
@ -734,7 +734,7 @@ class App:
self._lane_dirty(False) self._lane_dirty(False)
def _edit_done(self): def _edit_done(self):
self._close_overlay() self._close_overlay()
# ---------- hamburger menu (main) + sub-modals (Settings / Help / About) ---------- # ---------- hamburger menu (main) + sub-modals (Settings / Help / About) ----------
def _show_menu(self): def _show_menu(self):
self._overlay = 'menu'; self._draw_menu() self._overlay = 'menu'; self._draw_menu()
def _draw_menu(self): def _draw_menu(self):