don't change the notification icon

This commit is contained in:
Hylke Bons 2010-05-15 22:24:57 +01:00
parent 29f91c9547
commit 4d9b8503c9
2 changed files with 5 additions and 4 deletions

View file

@ -30,13 +30,13 @@ namespace SparkleShare {
}
public void SetSyncingState () {
IconName = "folder-syncing";
Tooltip = "SparkleShare, updating files...";
// IconName = "folder-syncing";
// Tooltip = "SparkleShare, updating files...";
}
public void SetErrorState () {
IconName = "folder-sync-error";
Tooltip = "SparkleShare, something went wrong";
// IconName = "folder-sync-error";
// Tooltip = "SparkleShare, something went wrong";
}
}

View file

@ -372,6 +372,7 @@ namespace SparkleShare {
TreeView LogView = new TreeView (LogStore);
LogView.HeadersVisible = false;
LogView.RowSpacing = 30;
CellRendererText TextCellRight = new Gtk.CellRendererText ();
TextCellRight.Alignment = Pango.Alignment.Right;