Merge branch 'master' of github.com:ShareX/ShareX

This commit is contained in:
Jaex 2014-06-04 14:53:55 +03:00
commit 335f6a1041
2 changed files with 9 additions and 7 deletions

View file

@ -338,15 +338,15 @@ private void cbCustomCommands_CheckedChanged(object sender, EventArgs e)
Options.FFmpeg.UseCustomCommands = cbCustomCommands.Checked;
txtCommandLinePreview.ReadOnly = !Options.FFmpeg.UseCustomCommands;
if (!Options.FFmpeg.UseCustomCommands)
{
txtCommandLinePreview.Text = Options.GetFFmpegCommands();
}
txtCommandLinePreview.Text = Options.FFmpeg.UseCustomCommands ? Options.FFmpeg.CustomCommands : Options.GetFFmpegCommands();
}
private void txtCommandLinePreview_TextChanged(object sender, EventArgs e)
{
Options.FFmpeg.CustomCommands = txtCommandLinePreview.Text;
if (cbCustomCommands.Checked)
{
Options.FFmpeg.CustomCommands = txtCommandLinePreview.Text;
}
}
}
}

View file

@ -76,8 +76,10 @@ public string GetFFmpegCommands()
return commands;
}
return GetFFmpegArgs();
else
{
return GetFFmpegArgs();
}
}
private string GetFFmpegArgs()