ncls: disable cursor

This commit is contained in:
nick black 2021-06-26 20:21:20 -04:00
parent e813e3abe4
commit 68e498a583
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
2 changed files with 2 additions and 0 deletions

View File

@ -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`.

View File

@ -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));