fix: filter applicationframehost (UWP container, always duplicate)
This commit is contained in:
parent
bc8ffa191d
commit
073ac283aa
1 changed files with 4 additions and 0 deletions
|
|
@ -103,6 +103,10 @@ mod win_impl {
|
|||
continue;
|
||||
}
|
||||
let process_name = hwnd_process_name(*hwnd).unwrap_or_default();
|
||||
// ApplicationFrameHost is a UWP container — always a duplicate of the real app window
|
||||
if process_name.to_lowercase() == "applicationframehost" {
|
||||
continue;
|
||||
}
|
||||
raw_windows.push((*hwnd, title, process_name));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue