From afa4f1d2419ebc9caa0033a9b6ce24b51f65d791 Mon Sep 17 00:00:00 2001 From: enricorov Date: Tue, 7 Dec 2021 18:49:11 +0000 Subject: [PATCH] Adjusted button size --- apps/scribble/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/scribble/app.js b/apps/scribble/app.js index e8fb9e4c2..3d05f68c5 100644 --- a/apps/scribble/app.js +++ b/apps/scribble/app.js @@ -19,15 +19,15 @@ const font_height = 2; const global_font = "Dennis8"; require("FontDennis8").add(Graphics); -const editable_buf = "hello"; +const editable_buf = "Scribble"; -const left = 4; +const left = 3; const _screen_mid = g.getWidth() / 2; const right = 176 - 4; const box_size = { w: _screen_mid - 6, - h: 45, + h: 46, }; const spacing = 4;