[READ-ONLY] Mirror of https://github.com/probablykasper/ferrum. Music library app for Mac, Linux and Windows ferrum.kasper.space
electron linux macos music music-library music-player napi windows
0

Configure Feed

Select the types of activity you want to include in your feed.

Fix error when removing last column

Kasper (Oct 2, 2025, 11:45 PM +0200) 5eba883d a8d59f3d

+2 -1
+1
CHANGELOG.md
··· 7 7 - Improve error and crashing behaviour 8 8 - 2x faster library loading at startup 9 9 - Slightly faster scroll performance 10 + - Fix error when removing last column 10 11 11 12 ## 0.19.9 - 2025 Jul 4 12 13 - Fix column size not updating when resizing window
+1 -1
src/lib/virtual-grid.svelte.ts
··· 173 173 resize_only = false 174 174 } 175 175 for (let i = 0; i < this.columns.length; i++) { 176 - if (new_columns[i].key !== this.columns[i].key) { 176 + if (new_columns[i]?.key !== this.columns[i]?.key) { 177 177 resize_only = false 178 178 break 179 179 }