1
0
mirror of https://github.com/mifi/lossless-cut.git synced 2024-11-24 19:32:29 +01:00

don't auto hide complete notification

#2048
This commit is contained in:
Mikael Finstad 2024-06-21 18:03:55 +02:00
parent 9c9c8639ac
commit 51b4f639ca
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

View File

@ -642,7 +642,8 @@ export async function openExportFinishedToast({ filePath, warnings, notices }: {
</UnorderedList>
);
await openDirToast({ filePath, html, width: 800, position: 'center', timer: hasWarnings ? undefined : 30000 });
// https://github.com/mifi/lossless-cut/issues/2048
await openDirToast({ filePath, html, width: 800, position: 'center', timer: undefined });
}
export async function openConcatFinishedToast({ filePath, warnings, notices }: { filePath: string, warnings: string[], notices: string[] }) {