From 868824715bdd8febd56983ffc7682231e52aaaf4 Mon Sep 17 00:00:00 2001 From: Usermode Date: Sat, 6 Apr 2024 10:39:29 +0900 Subject: [PATCH] Update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 7210001..9891e37 100644 --- a/main.py +++ b/main.py @@ -61,12 +61,12 @@ win32gui.MoveWindow(hwnd, x0, y0, x0+1536, y0+864, True) except: try: - first_except = f"관리자: {title_with_version}" + first_except = f"관리자: {title_with_version}" hwnd = win32gui.FindWindow(None, first_except) x0, y0, x1, y1 = win32gui.GetWindowRect(hwnd) win32gui.MoveWindow(hwnd, x0, y0, x0+1536, y0+864, True) except: - second_except = f"Administrator: {title_with_version}" + second_except = f"Administrator: {title_with_version}" hwnd = win32gui.FindWindow(None, second_except) x0, y0, x1, y1 = win32gui.GetWindowRect(hwnd) win32gui.MoveWindow(hwnd, x0, y0, x0+1536, y0+864, True)