eventlog: fix logic opening different pages

This commit is contained in:
Hylke Bons 2012-10-25 00:30:46 +01:00
parent 7fe528334f
commit 62f38a7101

View file

@ -231,8 +231,8 @@ namespace SparkleShare {
public void LinkClicked (string url)
{
if (!url.StartsWith ("about:") || string.IsNullOrEmpty (url))
return;
if (url.StartsWith ("about:") || string.IsNullOrEmpty (url))
return;
url = url.Replace ("%20", " ");
@ -270,7 +270,7 @@ namespace SparkleShare {
} else if (url.StartsWith ("history://")) {
this.history_view_active = true;
Program.UI.Bubbles.Controller.ShowBubble ("F", "f", "");
ContentLoadingEvent ();
UpdateSizeInfoEvent ("…", "…");
UpdateChooserEnablementEvent (false);