cover-grid album dropdown behavior fixes

This commit is contained in:
2026-02-18 11:34:10 -05:00
parent 026ab1c333
commit c9e78c491c
17 changed files with 934 additions and 424 deletions
@@ -78,4 +78,16 @@ export class LibraryController implements ReactiveController {
setScrollPosition(view: ViewName, offset: number): void {
libraryStore.setScrollPosition(view, offset);
}
// ===================================================================
// COVER SIZE
// ===================================================================
get coverSize(): number {
return libraryStore.getCoverSize();
}
set coverSize(size: number) {
libraryStore.setCoverSize(size);
}
}