1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-04 19:40:02 +03:00

[1805] Simplify Window Text Call

This commit is contained in:
David Sangrey 2024-06-18 13:09:21 -04:00
parent d319dd03b5
commit c0deeeb4cf
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 2 additions and 10 deletions

View File

@ -272,11 +272,7 @@ if __name__ == '__main__': # noqa: C901
def window_title(h: int) -> str | None:
if h:
text_length = win32gui.GetWindowTextLength(h) + 1
buf = create_unicode_buffer(text_length)
if win32gui.GetWindowText(h):
return buf.value
return win32gui.GetWindowText(h)
return None
@WINFUNCTYPE(BOOL, HWND, LPARAM)

View File

@ -47,11 +47,7 @@ def window_title(h) -> str:
:return: Window title.
"""
if h:
title_length = win32gui.GetWindowTextLength(h) + 1
buf = ctypes.create_unicode_buffer(title_length)
if win32gui.GetWindowText(h):
return buf.value
return win32gui.GetWindowText(h)
return ''