Skip to content
Snippets Groups Projects
Commit f1162695 authored by luyikei's avatar luyikei
Browse files

MainWorkflow: Ensure to close the dialog only when rendering finishes successfully

parent ea7243d2
No related branches found
No related tags found
No related merge requests found
......@@ -338,7 +338,6 @@ MainWorkflow::startRenderToFile( const QString &outputFileName, quint32 width, q
WorkflowFileRendererDialog dialog( width, height, input->playableLength(), m_renderer->eventWatcher() );
dialog.setModal( true );
dialog.setOutputFileName( outputFileName );
connect( &cEventWatcher, &OutputEventWatcher::stopped, &dialog, &WorkflowFileRendererDialog::accept );
connect( &dialog, &WorkflowFileRendererDialog::stop, this, [&output]{ output.stop(); } );
connect( m_renderer->eventWatcher(), &RendererEventWatcher::positionChanged, &dialog,
[this, input, &dialog, width, height]( qint64 pos )
......@@ -353,6 +352,7 @@ MainWorkflow::startRenderToFile( const QString &outputFileName, quint32 width, q
connect( &cEventWatcher, &OutputEventWatcher::stopped, this, [&output]{ output.stop(); } );
connect( this, &MainWorkflow::mainWorkflowEndReached, this, [&output]{ output.stop(); } );
connect( this, &MainWorkflow::mainWorkflowEndReached, &dialog, &WorkflowFileRendererDialog::accept );
input->setPosition( 0 );
output.start();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment