From a8595d0aae40e2f601af8b8fc8b543686dc12075 Mon Sep 17 00:00:00 2001 From: night0721 Date: Sat, 9 Mar 2024 19:55:32 +0000 Subject: [PATCH] fix preview remove border --- ccc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ccc.c b/ccc.c index 6bc1c7a..2c8e4cf 100644 --- a/ccc.c +++ b/ccc.c @@ -189,6 +189,7 @@ void show_file_content() if (file) { wclear(windows[1].window); + draw_border_title(windows[1].window, true); fseek(file, 0, SEEK_END); long length = ftell(file); fseek(file, 0, SEEK_SET);