From 00f797240b53bc56f97e0f78086018b4871c43ce Mon Sep 17 00:00:00 2001 From: Klesh Wong Date: Fri, 4 Jun 2021 00:01:56 +0800 Subject: [PATCH] [bugfix] minus adjustment --- win/WindowsTerminal/settings.json | 2 +- win/win.ahk | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/win/WindowsTerminal/settings.json b/win/WindowsTerminal/settings.json index 5dec5c8..8963f64 100644 --- a/win/WindowsTerminal/settings.json +++ b/win/WindowsTerminal/settings.json @@ -35,7 +35,7 @@ "cursorShape": "filledBox", // https://github.com/laishulu/Sarasa-Mono-SC-Nerd/releases/latest "fontFace": "Sarasa Mono SC Nerd", - "fontSize": 10 + "fontSize": 12 }, "list": [ { diff --git a/win/win.ahk b/win/win.ahk index 440e64e..bd468e9 100644 --- a/win/win.ahk +++ b/win/win.ahk @@ -168,7 +168,7 @@ MoveActiveWinByDirection(direction) { GetCursorMonGeometry(x, y, w, h) activeWinId := WinExist("A") WinGetPosEx(activeWinId, wx, wy, ww, wh, l, t, r, b) - wx := x + wx := x wy := y ww := floor(w * RATIO) wh := h @@ -186,4 +186,4 @@ ToggleActiveWinMaximum() { } else { WinMaximize, A } -} \ No newline at end of file +}