1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

[Minor] Additional Visual Padding Fixes

This commit is contained in:
David Sangrey 2024-04-06 16:52:45 -04:00
parent 3c6ea3c932
commit c14bd826d0
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC

View File

@ -252,7 +252,7 @@ if (config.auth_force_edmc_protocol # noqa: C901
# https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-createwindowexw # https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-createwindowexw
hwnd = CreateWindowExW( hwnd = CreateWindowExW(
0, # dwExStyle 0, # dwExStyle
wndclass.lpszClassName, # lpClassName wndclass.lpszClassName, # lpClassName
"DDE Server", # lpWindowName "DDE Server", # lpWindowName
0, # dwStyle 0, # dwStyle
@ -260,7 +260,7 @@ if (config.auth_force_edmc_protocol # noqa: C901
self.master.winfo_id(), # hWndParent # Don't use HWND_MESSAGE since the window won't get DDE broadcasts self.master.winfo_id(), # hWndParent # Don't use HWND_MESSAGE since the window won't get DDE broadcasts
None, # hMenu None, # hMenu
wndclass.hInstance, # hInstance wndclass.hInstance, # hInstance
None # lpParam None # lpParam
) )
msg = MSG() msg = MSG()