From 7ab2bddde7b5336f4d50a7f13ae0d3c8269544c4 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 31 Dec 2020 00:32:47 -0500 Subject: [PATCH] notcurses-tester: no alternate screen --- tests/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.cpp b/tests/main.cpp index b24440a90..cc55a54b3 100644 --- a/tests/main.cpp +++ b/tests/main.cpp @@ -17,7 +17,7 @@ static const char* datadir = NOTCURSES_SHARE; auto testing_notcurses() -> struct notcurses* { notcurses_options nopts{}; nopts.loglevel = NCLOGLEVEL_ERROR; - nopts.flags = NCOPTION_SUPPRESS_BANNERS; + nopts.flags = NCOPTION_SUPPRESS_BANNERS | NCOPTION_NO_ALTERNATE_SCREEN; auto nc = notcurses_init(&nopts, nullptr); return nc; }