mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-06 01:43:48 +00:00
Fix bug in offset
This commit is contained in:
@@ -563,7 +563,7 @@ Events.on('load', () => {
|
||||
c.width = w;
|
||||
c.height = h;
|
||||
let offset = h > 380 ? 100 : 65;
|
||||
offset = h > 800 ? 116 : h;
|
||||
offset = h > 800 ? 116 : offset;
|
||||
x0 = w / 2;
|
||||
y0 = h - offset;
|
||||
dw = Math.max(w, h, 1000) / 13;
|
||||
|
||||
Reference in New Issue
Block a user