1
0
mirror of https://gitlab.gnome.org/World/tootle synced 2025-02-16 19:40:41 +01:00

Invert status list order

This commit is contained in:
bleakgrey 2018-04-16 23:36:57 +03:00
parent 2d0a38e957
commit b2683cc56a

View File

@ -47,7 +47,7 @@ public class Tootle.HomeView : Tootle.AbstractView {
public void prepend(Status status){ //TODO: clear all on account switch public void prepend(Status status){ //TODO: clear all on account switch
var widget = new StatusWidget(status); var widget = new StatusWidget(status);
widget.rebind (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){ public virtual void on_account_changed (Account? account){