From 98cf06f51967b41d57488d1b4fc7000482a08824 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Tue, 7 Jan 2025 22:05:36 +0900 Subject: [PATCH] zfm: fix: a single character trail may left behind on dir change --- assets/disk0/tvdos/bin/zfm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/disk0/tvdos/bin/zfm.js b/assets/disk0/tvdos/bin/zfm.js index d9e304b..6c83d84 100644 --- a/assets/disk0/tvdos/bin/zfm.js +++ b/assets/disk0/tvdos/bin/zfm.js @@ -229,7 +229,7 @@ let filesPanelDraw = (wo) => { // print empty filename con.color_pair(foreCol, backCol) con.move(wo.y + 2+i, wo.x + 1) - print(' '.repeat(FILELIST_WIDTH - 2)) + print(' '.repeat(FILELIST_WIDTH - 1)) // print | con.color_pair(COL_TEXT, backCol)