浏览代码

Fix bug in offset

RobinLinus 4 年之前
父节点
当前提交
14ead247ed
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      client/scripts/ui.js

+ 1 - 1
client/scripts/ui.js

@@ -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;