From c4c52d8723eecf310d1e69a6164a5c6ffb6d3ef3 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 3 Mar 2021 13:06:01 -0500 Subject: [PATCH] fix filter display --- terminal.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.d b/terminal.d index 00865dc..2a3b810 100644 --- a/terminal.d +++ b/terminal.d @@ -7542,7 +7542,7 @@ version(TerminalDirectToEmulator) { - if(term.pipeThroughStdOut) { + if(term.pipeThroughStdOut && parent is null) { // if we have a parent, it already did this and stealing it is going to b0rk the output entirely version(Posix) { import unix = core.sys.posix.unistd; import core.stdc.stdio;