Add a game counter to total games

This commit is contained in:
kramo
2023-07-08 00:47:24 +02:00
parent 22200be167
commit 6db3557cff
4 changed files with 40 additions and 11 deletions

View File

@@ -93,7 +93,6 @@ template $CartridgesWindow : Adw.ApplicationWindow {
margin-top: 12;
margin-bottom: 12;
margin-start: 6;
margin-end: 6;
spacing: 12;
Image {
@@ -102,13 +101,20 @@ template $CartridgesWindow : Adw.ApplicationWindow {
Label {
halign: start;
label: _("All Games");
margin-end: 6;
}
Label all_games_no_label {
hexpand: true;
halign: end;
margin-end: 6;
styles ["dim-label"]
}
}
Box added_row_box {
margin-top: 12;
margin-bottom: 12;
margin-start: 6;
margin-end: 6;
spacing: 12;
Image {
@@ -117,6 +123,14 @@ template $CartridgesWindow : Adw.ApplicationWindow {
Label {
halign: start;
label: _("Added");
margin-end: 6;
}
Label added_games_no_label {
hexpand: true;
halign: end;
margin-end: 6;
styles ["dim-label"]
}
}
ListBoxRow {