Change header buttons order

This commit is contained in:
bleakgrey 2018-04-17 20:28:07 +03:00
parent e0de712c04
commit ff76376aad
3 changed files with 2 additions and 4 deletions

View File

@ -92,9 +92,9 @@ public class Tootle.MainWindow: Gtk.Window {
private void show_main_views (){
mode.clear_children ();
add_view (home);
add_view (notifications);
add_view (feed_local);
add_view (feed_federated);
add_view (notifications);
mode.set_active (0);
mode.show ();
button_toot.show ();

View File

@ -7,7 +7,7 @@ public class Tootle.LocalView : Tootle.HomeView {
}
public override string get_icon () {
return "appointment-symbolic";
return "folder-recent-symbolic";
}
public override string get_name () {

View File

@ -64,7 +64,5 @@ public class Tootle.NotificationsView : Tootle.AbstractView {
}
});
}
}