add dropdown to album view
This commit is contained in:
parent
3f7f7d4ce9
commit
edaf7079ac
1 changed files with 16 additions and 0 deletions
|
@ -47,6 +47,22 @@ template $UiWindow: Adw.ApplicationWindow {
|
||||||
CenterBox {
|
CenterBox {
|
||||||
styles [ "toolbar" ]
|
styles [ "toolbar" ]
|
||||||
|
|
||||||
|
[start]
|
||||||
|
DropDown {
|
||||||
|
selected: 0;
|
||||||
|
model: StringList {
|
||||||
|
strings [
|
||||||
|
_("Random"),
|
||||||
|
_("Recently added"),
|
||||||
|
_("Most played"),
|
||||||
|
_("Recently played"),
|
||||||
|
_("Starred"),
|
||||||
|
_("Name"),
|
||||||
|
_("Artist"),
|
||||||
|
]
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
[center]
|
[center]
|
||||||
SearchEntry {
|
SearchEntry {
|
||||||
placeholder-text: _("Search...");
|
placeholder-text: _("Search...");
|
||||||
|
|
Loading…
Reference in a new issue