mirror of
https://github.com/tmux/tmux.git
synced 2026-05-31 06:36:18 +00:00
Fix bug where tty output of command outputing was getting written to the window aafter it was minimised.
This commit is contained in:
@@ -145,6 +145,9 @@ screen_write_set_client_cb(struct tty_ctx *ttyctx, struct client *c)
|
|||||||
if (wp->layout_cell == NULL)
|
if (wp->layout_cell == NULL)
|
||||||
return (0);
|
return (0);
|
||||||
|
|
||||||
|
if (wp->flags & PANE_MINIMISED)
|
||||||
|
return (0);
|
||||||
|
|
||||||
if (wp->flags & (PANE_REDRAW|PANE_DROP))
|
if (wp->flags & (PANE_REDRAW|PANE_DROP))
|
||||||
return (-1);
|
return (-1);
|
||||||
if (c->flags & CLIENT_REDRAWPANES) {
|
if (c->flags & CLIENT_REDRAWPANES) {
|
||||||
|
|||||||
Reference in New Issue
Block a user