mirror of
https://github.com/wez/wezterm.git
synced 2024-12-24 13:52:55 +03:00
mux: fix unix build
This commit is contained in:
parent
58ece29f00
commit
09a705b78f
@ -780,9 +780,11 @@ impl LocalPane {
|
||||
}
|
||||
|
||||
for child in proc.children.values() {
|
||||
if child.console != 0 {
|
||||
find_youngest(child, youngest);
|
||||
#[cfg(windows)]
|
||||
if child.console == 0 {
|
||||
continue;
|
||||
}
|
||||
find_youngest(child, youngest);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user