Tooth/src/Views/Home.vala
Evangelos Paterakis 228c2c952b
fix: pack icons in gresource
tooth no longer depends on system icons
fixes #9
2022-11-21 03:52:40 +02:00

16 lines
309 B
Vala

public class Tooth.Views.Home : Views.Timeline {
public Home () {
Object (
url: "/api/v1/timelines/home",
label: _("Home"),
icon: "tooth-home-symbolic"
);
}
public override string? get_stream_url () {
return account.get_stream_url ();
}
}