bugfix: reload while running

reloading while running wouldnt clear paused data
This commit is contained in:
cv
2021-05-16 22:45:03 +02:00
parent 8162c622a6
commit 08e0101815
+3 -3
View File
@@ -779,11 +779,11 @@ class EventTimer extends Timer {
} }
reload() { reload() {
// reload data
this.loadEvent(this.selectedEventIndex);
// reset playstate // reset playstate
this.pause(); this.pause();
// reload data
this.loadEvent(this.selectedEventIndex);
} }
} }