library: New query logic

This commit is contained in:
Elias Projahn 2025-03-01 20:54:22 +01:00
parent d96bdf56e2
commit a6e0935df8
7 changed files with 432 additions and 302 deletions

View file

@ -55,6 +55,9 @@ impl TagTile {
Tag::Ensemble(ensemble) => {
imp.title_label.set_label(ensemble.name.get());
}
Tag::Instrument(instrument) => {
imp.title_label.set_label(instrument.name.get());
}
Tag::Work(work) => {
imp.title_label.set_label(work.name.get());
if let Some(composers) = work.composers_string() {