From 1c38c8b39a4bfd134557a8f5e297afd25623d738 Mon Sep 17 00:00:00 2001 From: nick black Date: Thu, 24 Jun 2021 07:54:06 -0400 Subject: [PATCH] notcurses-info: set scrolling on standard plane #1823 --- src/info/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info/main.c b/src/info/main.c index 3b07ceb2a..c2bf47ab5 100644 --- a/src/info/main.c +++ b/src/info/main.c @@ -126,7 +126,7 @@ int main(void){ const char indent[] = " "; struct ncplane* stdn = notcurses_stdplane(nc); // FIXME want cursor wherever it was - // FIXME want scrolling on standard plane + ncplane_set_scrolling(stdn, true); tinfo_debug_caps(stdn, &nc->tcache, indent); tinfo_debug_styles(stdn, indent); tinfo_debug_bitmaps(stdn, &nc->tcache, indent);