From 93432f0aa5e1de41ae2a10a997a78f50199b470c Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Tue, 12 Mar 2024 10:24:29 -0700 Subject: [PATCH] change copy for next/previous buttons This kills 2 birds with one stone: * In landscape mode the current level is near the top left, but in portrait mode that place is occupied by the button for the previous level. I and others start confusing that as the current level. Removing numbers from the buttons should eliminate the confusion. * The text wasn't centered on the button. Text without ascenders or descenders looks centered without any more code/sophistication. --- screens/main | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screens/main b/screens/main index ec48928..e5dd1f5 100644 --- a/screens/main +++ b/screens/main @@ -68,7 +68,7 @@ function draw_buttons() bg=bg, onpress1=move_down}) -- level navigation - local ns, ps = tostring(curr_level+1), tostring(curr_level-1) + local ns, ps = tostring('>>'), tostring('<<') local nw, pw = App.width(ns)+10, App.width(ps)+10 local h = Line_height+10 local nx,px, y -- 2.45.2