From 006477e1324295ee5733762b92408a70337d9ac2 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 12 Feb 2021 05:06:02 -0500 Subject: [PATCH] sgr-full: suppress banners --- src/poc/sgr-full.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poc/sgr-full.c b/src/poc/sgr-full.c index 08345bdad..93d671239 100644 --- a/src/poc/sgr-full.c +++ b/src/poc/sgr-full.c @@ -4,7 +4,7 @@ int main(void){ struct notcurses_options nopts = { - .flags = NCOPTION_NO_ALTERNATE_SCREEN, + .flags = NCOPTION_NO_ALTERNATE_SCREEN | NCOPTION_SUPPRESS_BANNERS, }; struct notcurses* nc = notcurses_core_init(&nopts, NULL); if(nc == NULL){