1
0
Fork 0

Update pebble.app.js

master
sir-indy 2022-03-29 14:17:13 +01:00 committed by GitHub
parent 7c697cf749
commit 181db37867
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -130,11 +130,11 @@ function drawLock(){
g.drawImage(atob("DhABH+D/wwMMDDAwwMf/v//4f+H/h/8//P/z///f/g=="), 1, 4);
} else {
g.setColor(settings.bg);
g.drawRect(0, 0, 20, 20);
g.fillRect(0, 0, 20, 20);
}
}
Bangle.on('lock', function(isLocked) {
Bangle.on('lock', function(on) {
drawLock();
});