diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-01-20 18:02:36 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-01-20 18:02:36 +0000 |
commit | 4ab3b18b36ddd361e0e0030d9d3a2c98b754e88c (patch) | |
tree | cf25e2893c372b9383d2d7ee12099213a14a6f72 | |
parent | cd8a7fb07b72ae525f3389ca4ac15eb0653d3af8 (diff) | |
parent | 2ea22fce5e5904720220962aaef65cc3a3a94152 (diff) | |
download | rtmux-4ab3b18b36ddd361e0e0030d9d3a2c98b754e88c.tar.gz rtmux-4ab3b18b36ddd361e0e0030d9d3a2c98b754e88c.tar.bz2 rtmux-4ab3b18b36ddd361e0e0030d9d3a2c98b754e88c.zip |
Merge branch 'obsd-master'
-rw-r--r-- | tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1102,7 +1102,7 @@ tty_clear_area(struct tty *tty, const struct window_pane *wp, u_int py, * background colour isn't default (because it doesn't work * after SGR 0). */ - if (tty->term_type == TTY_VT420 && COLOUR_DEFAULT(bg)) { + if (tty->term_type == TTY_VT420 && !COLOUR_DEFAULT(bg)) { xsnprintf(tmp, sizeof tmp, "\033[32;%u;%u;%u;%u$x", py + 1, px + 1, py + ny, px + nx); tty_puts(tty, tmp); |