Browse Source

Merge remote-tracking branch 'origin/dev' into dev

Vanessa 1 year ago
parent
commit
c705f6b189
1 changed files with 2 additions and 2 deletions
  1. 2 2
      app/electron/main.js

+ 2 - 2
app/electron/main.js

@@ -278,10 +278,10 @@ const initMainWindow = () => {
             windowState.width = Math.min(defaultWidth, workArea.width);
             windowState.width = Math.min(defaultWidth, workArea.width);
             windowState.height = Math.min(defaultHeight, workArea.height);
             windowState.height = Math.min(defaultHeight, workArea.height);
         }
         }
-        if (x > workArea.width) {
+        if (x >= workArea.width * 0.8) {
             x = 0;
             x = 0;
         }
         }
-        if (y > workArea.height) {
+        if (y >= workArea.height * 0.8) {
             y = 0;
             y = 0;
         }
         }
     }
     }