1
1
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:
Wez Furlong 2022-01-01 11:38:42 -07:00
parent 58ece29f00
commit 09a705b78f

View File

@ -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);
}
}