mirror of https://github.com/espruino/BangleApps
Improve Calendar Clock current time contrast
parent
a456f4ff62
commit
79a8d29692
|
@ -1,3 +1,4 @@
|
|||
0.01: Initial version
|
||||
0.02: More compact rendering & app icon
|
||||
0.03: Tell clock widgets to hide.
|
||||
0.04: Improve current time readability in light theme.
|
||||
|
|
|
@ -68,7 +68,7 @@ function drawEvent(event, y) {
|
|||
var curEventHeight = 0;
|
||||
|
||||
function drawCurrentEvents(y) {
|
||||
g.setColor("#0ff");
|
||||
g.setColor(g.theme.dark ? "#0ff" : "#006060");
|
||||
g.clearRect(5, y, g.getWidth() - 5, y + curEventHeight);
|
||||
curEventHeight = y;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "calclock",
|
||||
"name": "Calendar Clock",
|
||||
"shortName": "CalClock",
|
||||
"version": "0.03",
|
||||
"version": "0.04",
|
||||
"description": "Show the current and upcoming events synchronized from Gadgetbridge",
|
||||
"icon": "calclock.png",
|
||||
"type": "clock",
|
||||
|
|
Loading…
Reference in New Issue