Actually use modified path in working dir hint

This commit is contained in:
baldurk
2016-08-04 14:33:02 +02:00
parent 2060173049
commit dca8fe7905
+1 -1
View File
@@ -544,7 +544,7 @@ namespace renderdocui.Windows.Dialogs
// if it's a unix style path, maintain the slash type
if (Helpers.CharCount(exePath.Text, '/') > Helpers.CharCount(exePath.Text, '\\'))
{
workDirPath.Text.Replace('\\', '/');
workDirPath.Text = workDirPath.Text.Replace('\\', '/');
}
}