From 62f38a71015bda95f8a706c84da24a984c6940cc Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 25 Oct 2012 00:30:46 +0100 Subject: [PATCH] eventlog: fix logic opening different pages --- SparkleShare/SparkleEventLogController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/SparkleEventLogController.cs b/SparkleShare/SparkleEventLogController.cs index 135ee78e..717a9f32 100755 --- a/SparkleShare/SparkleEventLogController.cs +++ b/SparkleShare/SparkleEventLogController.cs @@ -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);