From 94fc95366aad7847c9f0c4eff4f2212e09dd75c5 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Thu, 20 May 2010 23:37:59 +0100 Subject: [PATCH] align the relative timestampe to the right in the treeview --- SparkleShare/SparkleStatusIcon.cs | 4 ++-- SparkleShare/SparkleWindow.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SparkleShare/SparkleStatusIcon.cs b/SparkleShare/SparkleStatusIcon.cs index f93175c0..a08641ec 100644 --- a/SparkleShare/SparkleStatusIcon.cs +++ b/SparkleShare/SparkleStatusIcon.cs @@ -87,7 +87,7 @@ namespace SparkleShare { } }; - MenuItem OpenFolderItem = new MenuItem (_("Open Sharing Folder")); + MenuItem OpenFolderItem = new MenuItem (_("Open SparkleShare Folder")); OpenFolderItem.Activated += delegate { Process Process = new Process (); Process.StartInfo.FileName = "xdg-open"; @@ -96,7 +96,7 @@ namespace SparkleShare { }; Menu.Add (OpenFolderItem); - MenuItem AboutItem = new MenuItem (_("Visit SparkleShare Website")); + MenuItem AboutItem = new MenuItem (_("About SparkleShare")); AboutItem.Activated += delegate { Process Process = new Process (); Process.StartInfo.FileName = "xdg-open"; diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index 0dc00b73..5c27b7f4 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -175,7 +175,7 @@ namespace SparkleShare { LogView.HeadersVisible = false; CellRendererText TextCellRight = new Gtk.CellRendererText (); - TextCellRight.Alignment = Pango.Alignment.Right; + TextCellRight.Xalign = 1; CellRendererText TextCellMiddle = new Gtk.CellRendererText (); TextCellMiddle.Ellipsize = Pango.EllipsizeMode.End;