From a15108da1d35c4759d50610b31679be41c12ce85 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 20 May 2010 23:09:03 +0100 Subject: [PATCH] show That's you! in the e-mail position --- SparkleShare/SparkleWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index e3803bd8..7da0cdc4 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -245,7 +245,7 @@ namespace SparkleShare { // Do something special if the person is you if (UserEmail.Equals (SparkleRepo.UserEmail)) - UserName += _(" (that’s you!)"); + UserEmail = _("That’s you!"); // Actually add to the list Iter = PeopleStore.Prepend (); @@ -293,6 +293,7 @@ namespace SparkleShare { i++; } + // Update the event log when a person is clicked PeopleView.SelectionChanged += delegate (object o, EventArgs args) { if (PeopleView.SelectedItems.Length > 0) { PeopleStore.GetIter (out Iter, PeopleView.SelectedItems [0]);