Skip to content

Commit

Permalink
Do not manage non responding windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nir9 committed Dec 19, 2023
1 parent 68cdaa4 commit f4d88de
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/dwm-win32.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,6 +693,10 @@ ismanageable(HWND hwnd) {
if (hwnd == 0)
return false;

if (IsHungAppWindow(hwnd)) {
return false;
}

if (getclient(hwnd))
return true;

Expand Down

0 comments on commit f4d88de

Please sign in to comment.