From 9d1b942226397cdfad3fe5dc5fd1c7d62febbd2f Mon Sep 17 00:00:00 2001 From: Laan Tungir Date: Sat, 9 May 2026 09:53:33 -0400 Subject: [PATCH] v0.0.20 - fixed curses --- src/main.c | 4 ++-- src/nt_tui_adapter.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index 9e7ee83..65c4610 100644 --- a/src/main.c +++ b/src/main.c @@ -11,8 +11,8 @@ */ #define NT_VERSION_MAJOR 0 #define NT_VERSION_MINOR 0 -#define NT_VERSION_PATCH 19 -#define NT_VERSION "v0.0.19" +#define NT_VERSION_PATCH 20 +#define NT_VERSION "v0.0.20" #include #include diff --git a/src/nt_tui_adapter.c b/src/nt_tui_adapter.c index 0e5478c..bc37c41 100644 --- a/src/nt_tui_adapter.c +++ b/src/nt_tui_adapter.c @@ -199,7 +199,7 @@ void nt_log_show(void) { } pthread_mutex_unlock(&g_log_mutex); - tuin_pager_run_ex(&frame, log_text, &status, 1); + tuin_pager_run(&frame, log_text, &status); } void nt_log_clear(void) {