mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Use source video folder when saving hard-sub vid - thx LeonCheung :)
Work on #7737
This commit is contained in:
parent
e7806e8279
commit
056cac00b8
@ -335,7 +335,13 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var oldFontSizeEnabled = numericUpDownFontSize.Enabled;
|
||||
numericUpDownFontSize.Enabled = false;
|
||||
|
||||
using (var saveDialog = new SaveFileDialog { FileName = SuggestNewVideoFileName(), Filter = "MP4|*.mp4|Matroska|*.mkv|WebM|*.webm", AddExtension = true })
|
||||
using (var saveDialog = new SaveFileDialog
|
||||
{
|
||||
FileName = SuggestNewVideoFileName(),
|
||||
Filter = "MP4|*.mp4|Matroska|*.mkv|WebM|*.webm",
|
||||
AddExtension = true ,
|
||||
InitialDirectory = Path.GetDirectoryName(_inputVideoFileName),
|
||||
})
|
||||
{
|
||||
if (comboBoxVideoEncoding.Text == "prores_ks")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user