From c14bd826d08daee4509cf2bf2b184245d7f54695 Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Sat, 6 Apr 2024 16:52:45 -0400 Subject: [PATCH] [Minor] Additional Visual Padding Fixes --- protocol.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol.py b/protocol.py index b052ebae..1fb88595 100644 --- a/protocol.py +++ b/protocol.py @@ -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 hwnd = CreateWindowExW( - 0, # dwExStyle + 0, # dwExStyle wndclass.lpszClassName, # lpClassName "DDE Server", # lpWindowName 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 None, # hMenu wndclass.hInstance, # hInstance - None # lpParam + None # lpParam ) msg = MSG()