forked from FOSS/BangleApps
return null instead of calling null
parent
9cab0af8b4
commit
f48fb40593
|
@ -1 +1,2 @@
|
|||
0.01: New Widget!
|
||||
0.02: Fix calling null on draw
|
|
@ -15,7 +15,7 @@ they don't interfere with currently-running apps */
|
|||
// add widget
|
||||
WIDGETS.twenties = {
|
||||
buzz: buzz,
|
||||
draw: null,
|
||||
draw: _ => { return null; },
|
||||
};
|
||||
|
||||
setInterval(WIDGETS.twenties.buzz, move); // buzz to stand / sit
|
||||
|
|
Loading…
Reference in New Issue