make clock_info border one pixel wider

master
thyttan 2023-04-19 19:02:55 +02:00
parent 9cb21ceb0f
commit 6830e5ed16
3 changed files with 3 additions and 2 deletions

View File

@ -31,3 +31,4 @@ clkinfo.addInteractive that would cause ReferenceError.
0.29: use setItem of clockInfoMenu to change the active item 0.29: use setItem of clockInfoMenu to change the active item
0.30: Use widget_utils 0.30: Use widget_utils
0.31: Use clock_info module as an app 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.

View File

@ -135,7 +135,7 @@ let clockInfoMenu = clock_info.addInteractive(clockInfoItems, {
app: "bwclk", app: "bwclk",
x : 0, x : 0,
y: 135, y: 135,
w: W, w: W+1,
h: H-135, h: H-135,
draw : (itm, info, options) => { draw : (itm, info, options) => {
var hideClkInfo = info.text == null; var hideClkInfo = info.text == null;

View File

@ -1,7 +1,7 @@
{ {
"id": "bwclk", "id": "bwclk",
"name": "BW Clock", "name": "BW Clock",
"version": "0.31", "version": "0.32",
"description": "A very minimalistic clock.", "description": "A very minimalistic clock.",
"readme": "README.md", "readme": "README.md",
"icon": "app.png", "icon": "app.png",