Use default save directory from options. Refs #335

This commit is contained in:
baldurk
2016-09-14 11:40:03 +02:00
parent 0442401a57
commit b36fe219d9
+8
View File
@@ -963,6 +963,14 @@ namespace renderdocui.Windows
public string GetSavePath()
{
try
{
saveDialog.InitialDirectory = m_Core.Config.DefaultCaptureSaveDirectory;
}
catch (Exception)
{
}
DialogResult res = saveDialog.ShowDialog();
if (res == DialogResult.OK)