make end time 00:00:00.000 for markers

in the text input
closes #2590
pull/2599/head
Mikael Finstad 8 months ago
parent 251101c14f
commit 251101ed32
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

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

Loading…
Cancel
Save