1
0
Fork 0

Fix accidental use of global var instead of this

master
Travis Evans 2023-08-24 15:12:25 -05:00
parent a7024aa52b
commit 3b5fe9c4a8
1 changed files with 2 additions and 2 deletions

View File

@ -180,8 +180,8 @@ class MainScreen {
// Launch this UI and make it live
start() {
this.layout = this.getLayout();
mainScreen.scrollLog('b');
mainScreen.render();
this.scrollLog('b');
this.render();
Object.assign(this.listeners, this.getTouchListeners());
Bangle.on('drag', this.listeners.drag);