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