Skip to content

Commit

Permalink
fixed possibility to export while no videos are loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
cirquit committed Dec 28, 2020
1 parent 54882fb commit 7368e3d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion trdrop/qml/ExportWindow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,9 @@ Window {
onEditingFinished: {
model.imagesequencePrefixValue = text;
}
Component.onCompleted: {
text = model.imagesequencePrefixValue
}
}
}
ComboBox {
Expand Down Expand Up @@ -237,7 +240,10 @@ Window {
exportProgressBar.value = 0.0;
exporter.stopExporting();
} else {
exporter.startExporting()
if (videocapturelist.getOpenVideosCount() > 0)
{
exporter.startExporting()
}
}
}
}
Expand Down

0 comments on commit 7368e3d

Please sign in to comment.