windows: Open files with the right app

This commit is contained in:
Hylke Bons 2012-03-10 20:22:56 +00:00
parent e718b21baa
commit 1568067c04

View file

@ -160,11 +160,7 @@ namespace SparkleShare {
public override void OpenFile (string url)
{
Process process = new Process ();
process.StartInfo.FileName = "start";
process.StartInfo.Arguments = "\"" + url + "\"";
process.Start ();
Process.Start (url);
}