From 20da16737715a183a019f1072735614615b5fd1c Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 11 Nov 2022 08:44:11 +0000 Subject: Tweak previous to set and log the feature instead of just setting the flag. --- tty-term.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tty-term.c') diff --git a/tty-term.c b/tty-term.c index 23abccf5..7998f657 100644 --- a/tty-term.c +++ b/tty-term.c @@ -454,6 +454,9 @@ tty_term_apply_overrides(struct tty_term *term) a = options_array_next(a); } + /* Log the SIXEL flag. */ + log_debug("SIXEL flag is %d", !!(term->flags & TERM_SIXEL)); + /* Update the RGB flag if the terminal has RGB colours. */ if (tty_term_has(term, TTYC_SETRGBF) && tty_term_has(term, TTYC_SETRGBB)) -- cgit