Skip to content

Commit

Permalink
[Minor] Return Visual Padding
Browse files Browse the repository at this point in the history
Just makes it nicer to read.
  • Loading branch information
Rixxan committed Apr 5, 2024
1 parent d00226f commit fbdc441
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@ def worker(self) -> None:
hwnd = CreateWindowExW(
0, # dwExStyle
wndclass.lpszClassName, # lpClassName
"DDE Server", # lpWindowName
0, # dwStyle
"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, # hMenu
wndclass.hInstance, # hInstance
None # lpParam
)

Expand Down

0 comments on commit fbdc441

Please sign in to comment.