simplify draw plumbing

This commit is contained in:
Felix Roos 2024-03-28 06:25:24 +01:00
parent 1a0dff4081
commit 04a0952a22
6 changed files with 15 additions and 36 deletions

View file

@ -50,7 +50,7 @@ export class Hap {
}
isActive(currentTime) {
return this.whole.begin <= currentTime && this.endClipped > currentTime;
return this.whole.begin <= currentTime && this.endClipped >= currentTime;
}
isInPast(currentTime) {