From 6830e5ed16afcc6b576974063cc13fdebd241ed6 Mon Sep 17 00:00:00 2001 From: thyttan <6uuxstm66@mozmail.com⁩> Date: Wed, 19 Apr 2023 19:02:55 +0200 Subject: [PATCH] make clock_info border one pixel wider --- apps/bwclk/ChangeLog | 1 + apps/bwclk/app.js | 2 +- apps/bwclk/metadata.json | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/bwclk/ChangeLog b/apps/bwclk/ChangeLog index 06f94854e..a5458d2da 100644 --- a/apps/bwclk/ChangeLog +++ b/apps/bwclk/ChangeLog @@ -31,3 +31,4 @@ clkinfo.addInteractive that would cause ReferenceError. 0.29: use setItem of clockInfoMenu to change the active item 0.30: Use widget_utils 0.31: Use clock_info module as an app +0.32: Make the border of the clock_info box extend all the way to the right of the screen. diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js index 770c053c2..359baebae 100644 --- a/apps/bwclk/app.js +++ b/apps/bwclk/app.js @@ -135,7 +135,7 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, { app: "bwclk", x : 0, y: 135, - w: W, + w: W+1, h: H-135, draw : (itm, info, options) => { var hideClkInfo = info.text == null; diff --git a/apps/bwclk/metadata.json b/apps/bwclk/metadata.json index 430f466b2..6b8230555 100644 --- a/apps/bwclk/metadata.json +++ b/apps/bwclk/metadata.json @@ -1,7 +1,7 @@ { "id": "bwclk", "name": "BW Clock", - "version": "0.31", + "version": "0.32", "description": "A very minimalistic clock.", "readme": "README.md", "icon": "app.png",