Fix "Window" actions not being applied to OBS windows

This commit is contained in:
WarmUpTill 2024-05-10 22:48:08 +02:00 committed by WarmUpTill
parent 3ab2ea9e66
commit cc4a3560d8

View File

@ -181,12 +181,6 @@ static bool windowIsValid(HWND window)
return false;
}
DWORD id;
GetWindowThreadProcessId(window, &id);
if (id == GetCurrentProcessId()) {
return false;
}
// Only accept for top level windows and not controls within them
if (window != GetAncestor(window, GA_ROOT)) {
return false;