windows: Fix folders sometimes not opening. Closes #1441

This commit is contained in:
Hylke Bons 2014-11-04 21:12:51 +00:00
parent 0ee6622895
commit bfa3dd2bec

View file

@ -178,11 +178,7 @@ namespace SparkleShare {
public override void OpenFolder (string path)
{
Process process = new Process ();
process.StartInfo.FileName = "explorer";
process.StartInfo.Arguments = path;
process.Start ();
Process.Start (path);
}