Skip to content

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
scottjsh committed Apr 6, 2024
1 parent c0dc255 commit 8688247
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8688247

Please sign in to comment.