Invert status list order

This commit is contained in:
bleakgrey 2018-04-16 23:36:57 +03:00
parent 2d0a38e957
commit b2683cc56a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ public class Tootle.HomeView : Tootle.AbstractView {
public void prepend(Status status){ //TODO: clear all on account switch
var widget = new StatusWidget(status);
widget.rebind (status);
view.pack_end (widget, false, false, 0);
view.pack_start(widget, false, false, 0);
}
public virtual void on_account_changed (Account? account){