Filter the historical list according to a date picker #194

Merged
savanni merged 7 commits from fitnesstrax/date-field into main 2024-02-18 22:19:40 +00:00
1 changed files with 8 additions and 1 deletions
Showing only changes of commit 540e512f5f - Show all commits

View File

@ -128,8 +128,15 @@ impl HistoricalView {
} }
}); });
let scroller = gtk::ScrolledWindow::builder()
.child(&s.imp().list_view)
.hexpand(true)
.vexpand(true)
.hscrollbar_policy(gtk::PolicyType::Never)
.build();
s.append(&date_range_picker); s.append(&date_range_picker);
s.append(&s.imp().list_view); s.append(&scroller);
s s
} }