From 203e30f664a3c99106aeade4bd4db096a8e8e3f8 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Mon, 31 May 2010 12:38:55 +0200 Subject: [PATCH] use an arrpw instead of a slash as path separator --- SparkleShare/SparkleWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index 69b68c9d..4f1fd724 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -151,7 +151,8 @@ namespace SparkleShare { Gdk.Pixbuf ChangeIcon = SparkleHelpers.GetIcon (IconFile, 16); Iter = LogStore.Append (); LogStore.SetValue (Iter, 0, ChangeIcon); - LogStore.SetValue (Iter, 1, Message); + LogStore.SetValue (Iter, 1, + Message.Replace ("/", " → ")); if (SparkleRepo.UserEmail.Equals (UserEmail)) LogStore.SetValue (Iter, 2, "You");