1
0
Fork 0

widbthide: fix typo

master
Iakov Davydov 2022-05-18 19:31:52 +02:00
parent 63f78e3233
commit 63aa03bbdb
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ WIDGETS["bluetooth"]={area:"tr",draw:function() {
g.setColor((g.getBPP()>8) ? "#07f" : (g.theme.dark ? "#0ff" : "#00f")); g.setColor((g.getBPP()>8) ? "#07f" : (g.theme.dark ? "#0ff" : "#00f"));
g.drawImage(atob("CxQBBgDgFgJgR4jZMawfAcA4D4NYybEYIwTAsBwDAA=="),2+this.x,2+this.y); g.drawImage(atob("CxQBBgDgFgJgR4jZMawfAcA4D4NYybEYIwTAsBwDAA=="),2+this.x,2+this.y);
},changed:function() { },changed:function() {
WIDGET.bluetooth.width = NRF.getSecurityStatus().connected?15:0; WIDGETS.bluetooth.width = NRF.getSecurityStatus().connected?15:0;
Bangle.drawWidgets(); Bangle.drawWidgets();
},width:NRF.getSecurityStatus().connected?15:0 },width:NRF.getSecurityStatus().connected?15:0
}; };