Skip to content

Commit

Permalink
[Minor] Additional Visual Padding Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed Apr 6, 2024
1 parent 3c6ea3c commit c14bd82
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,15 +252,15 @@ def worker(self) -> None:

# https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-createwindowexw
hwnd = CreateWindowExW(
0, # dwExStyle
0, # dwExStyle
wndclass.lpszClassName, # lpClassName
"DDE Server", # lpWindowName
0, # dwStyle
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, # X, Y, nWidth, nHeight
self.master.winfo_id(), # hWndParent # Don't use HWND_MESSAGE since the window won't get DDE broadcasts
None, # hMenu
wndclass.hInstance, # hInstance
None # lpParam
None # lpParam
)

msg = MSG()
Expand Down

0 comments on commit c14bd82

Please sign in to comment.