mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-11-01 09:10:06 +00:00
[frontend] SkModPlayer Minor cleanup
Hide the shame of webkit.
This commit is contained in:
parent
30316e543c
commit
8864269d7c
1 changed files with 3 additions and 3 deletions
|
|
@ -93,7 +93,7 @@ class CanvasDisplay {
|
|||
ctx: CanvasRenderingContext2D;
|
||||
html: HTMLCanvasElement;
|
||||
background: HTMLSpanElement;
|
||||
drawn: { top: number, bottom: number, completed: boolean };
|
||||
drawn: { top: number, bottom: number };
|
||||
vPos: number;
|
||||
transform: { x: number, y: number };
|
||||
drawStart: number;
|
||||
|
|
@ -104,7 +104,7 @@ class CanvasDisplay {
|
|||
) {
|
||||
this.ctx = ctx;
|
||||
this.html = html;
|
||||
this.drawn = { top: 0, bottom: 0, completed: false };
|
||||
this.drawn = { top: 0, bottom: 0 };
|
||||
this.vPos = -0xFFFFFFFF;
|
||||
this.transform = { x: 0, y: 0 };
|
||||
this.drawStart = 0;
|
||||
|
|
@ -119,7 +119,6 @@ class CanvasDisplay {
|
|||
this.drawn = {
|
||||
top: 0xFFFFFFFF,
|
||||
bottom: -0xFFFFFFFF,
|
||||
completed: false,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
@ -617,6 +616,7 @@ html {
|
|||
position: static;
|
||||
image-rendering: pixelated;
|
||||
mix-blend-mode: multiply;
|
||||
background-color: #000000;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue