mirror of https://github.com/espruino/BangleApps
Merge pull request #3636 from cyberarm/patch-1
Rebble Watchface: Possibly fix steps counter text white when it should be blackpull/3654/head
commit
ebd2d5b7b9
|
@ -16,3 +16,4 @@
|
|||
0.16: Use 'modules/suncalc.js' to avoid it being copied 8 times for different apps
|
||||
0.17: Add fullscreen option (on by default) to show widgets, adjust sidebar 1 and 2 when fullscreen is off
|
||||
0.18: Minor code improvements
|
||||
0.19: Fix steps counter text white when it should be black
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "rebble",
|
||||
"name": "Rebble Clock",
|
||||
"shortName": "Rebble",
|
||||
"version": "0.18",
|
||||
"version": "0.19",
|
||||
"description": "A Pebble style clock, with configurable background, three sidebars including steps, day, date, sunrise, sunset, long live the rebellion",
|
||||
"readme": "README.md",
|
||||
"icon": "rebble.png",
|
||||
|
|
|
@ -219,6 +219,8 @@ Graphics.prototype.setFontKdamThmor = function(scale) {
|
|||
}
|
||||
|
||||
let drawSideBar2Alt=function() {
|
||||
setTextColor();
|
||||
|
||||
// steps
|
||||
g.drawImage(boot_img, 113, 59, { scale: 1 });
|
||||
setSmallFont();
|
||||
|
|
Loading…
Reference in New Issue