From 251101ed326380d1b815a40f8c8a40add360ae75 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sat, 1 Nov 2025 21:04:42 +0800 Subject: [PATCH] make end time 00:00:00.000 for markers in the text input closes #2590 --- src/renderer/src/BottomBar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/src/BottomBar.tsx b/src/renderer/src/BottomBar.tsx index c58922c7..170f7c4c 100644 --- a/src/renderer/src/BottomBar.tsx +++ b/src/renderer/src/BottomBar.tsx @@ -197,7 +197,7 @@ const CutTimeInput = memo(({ darkMode, cutTime, setCutTime, startTimeOffset, see function renderValue() { if (isCutTimeManualSet()) return cutTimeManual; - if (cutTime == null) return ''; + if (cutTime == null) return formatTimecode({ seconds: 0 }); // marker, see https://github.com/mifi/lossless-cut/issues/2590 return formatTimecode({ seconds: cutTime + startTimeOffset }); }