Rémi Bernon (@rbernon) commented about dlls/win32u/input.c:
send_message( previous, WM_ACTIVATE, MAKEWPARAM( WA_INACTIVE, is_iconic(previous) ), (LPARAM)hwnd ); }
Should we then maybe reduce the flag scope to this?
```suggestion:-8+0 if (is_window( previous )) { win_set_flags(previous, WIN_IS_DEACTIVATING, 0); send_message( previous, WM_NCACTIVATE, FALSE, (LPARAM)hwnd ); send_message( previous, WM_ACTIVATE, MAKEWPARAM( WA_INACTIVE, is_iconic(previous) ), (LPARAM)hwnd ); win_set_flags(previous, 0, WIN_IS_DEACTIVATING); }
```