From 68e498a583acc24d5571744d07a1278bf833aa7e Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 26 Jun 2021 20:21:20 -0400 Subject: [PATCH] ncls: disable cursor --- NEWS.md | 1 + src/ls/main.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index 05d7b06b8..6fc2cc150 100644 --- a/NEWS.md +++ b/NEWS.md @@ -9,6 +9,7 @@ rearrangements of Notcurses. starting in the upper-left corner. Together with a scrolling standard plane and inhibition of the alternate screen, this allows rendered mode to easily be used for scrolling shell environment programs. + * `ncls` now defaults to `NCBLIT_PIXEL`. * 2.3.6 (2021-06-23) * Fixed (harmless) warning with `-Wformat-security`. diff --git a/src/ls/main.cpp b/src/ls/main.cpp index 19e52093d..2e376a20f 100644 --- a/src/ls/main.cpp +++ b/src/ls/main.cpp @@ -266,6 +266,7 @@ int main(int argc, char* const * argv){ blitter, scale, }; + ctx.nc.cursor_disable(); keep_working = true; for(auto s = 0u ; s < procs ; ++s){ threads.emplace_back(std::thread(ncls_thread, &ctx));