[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 TrackInfo `Cmd+[`/`]`

Kasper (Sep 18, 2024, 1:27 AM +0200) af8ad99c b3e25811

+2
+2
src/components/TrackInfo.svelte
··· 195 195 if (check_shortcut(e, '[', { cmd_or_ctrl: true })) { 196 196 save(false) 197 197 open_prev() 198 + e.preventDefault() 198 199 } else if (check_shortcut(e, ']', { cmd_or_ctrl: true })) { 199 200 save(false) 200 201 open_next() 202 + e.preventDefault() 201 203 } 202 204 } 203 205 function keydown_none_selected(e: KeyboardEvent) {