From 2e8657d7455d1d055566168c54be2499c030a9f0 Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Sun, 23 Feb 2020 18:21:44 +0800 Subject: [PATCH] improve notification --- src/renderer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer.jsx b/src/renderer.jsx index ce8748c..29187b1 100644 --- a/src/renderer.jsx +++ b/src/renderer.jsx @@ -780,7 +780,7 @@ const App = memo(() => { } } - toast.fire({ timer: 5000, icon: 'success', title: `Export completed! Output file(s) can be found at: ${outputDir}.${exportExtraStreams ? ' Extra unprocessable stream(s) exported as separate files.' : ''}` }); + toast.fire({ timer: 5000, icon: 'success', title: `Export completed! Go to settings to view the ffmpeg commands that were executed. Output file(s) can be found at: ${outputDir}.${exportExtraStreams ? ' Extra unprocessable streams were exported to separate files.' : ''}` }); } catch (err) { console.error('stdout:', err.stdout); console.error('stderr:', err.stderr);