Merge pull request #228 from garrett/master

Fixing issue #224, where the Recent Events window is refreshed & jumps to the top on every link click
This commit is contained in:
Hylke Bons 2011-06-17 04:20:21 -07:00
commit a2befe567c

View file

@ -92,7 +92,8 @@ namespace SparkleShare {
process.StartInfo.Arguments = args.Request.Uri.Replace (" ", "\\ "); // Escape space-characters
process.Start ();
UpdateEvents ();
// Don't follow HREFs (as this would cause a page refresh)
args.RetVal = 1;
}
};