event log: add missing ShowAll()

This commit is contained in:
Hylke Bons 2011-12-15 16:24:10 +01:00
parent a4d1e5d120
commit 6966c62e8f

View file

@ -132,8 +132,10 @@ namespace SparkleShare {
Controller.UpdateSizeInfoEvent += delegate (string size, string history_size) {
Application.Invoke (delegate {
Markup = "<b>Size:</b> " + size + " " +
"<b>History:</b> " + history_size;
this.size_label.Markup = "<b>Size:</b> " + size + " " +
"<b>History:</b> " + history_size;
this.size_label.ShowAll ();
});
};
}