Set RGB flag if capabilities are present, GitHub issue 2418.

pull/2571/head
nicm 2020-10-13 07:29:24 +00:00 committed by Nicholas Marriott
parent 07ffed8b6f
commit 977cf3cf69
1 changed files with 3 additions and 0 deletions

View File

@ -580,6 +580,9 @@ tty_term_create(struct tty *tty, char *name, int *feat, int fd, char **cause)
(!tty_term_has(term, TTYC_SETRGBF) ||
!tty_term_has(term, TTYC_SETRGBB)))
tty_add_features(feat, "RGB", ",");
if (tty_term_has(term, TTYC_SETRGBF) &&
tty_term_has(term, TTYC_SETRGBB))
term->flags |= TERM_RGBCOLOURS;
/* Apply the features and overrides again. */
tty_apply_features(term, *feat);