[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.

Disable space play/pause when modals are open

Kasper (Oct 8, 2024, 2:07 AM +0200) 207a0a44 2711d740

+1 -1
+1 -1
src/App.svelte
··· 102 102 function keydown(e: KeyboardEvent) { 103 103 let el = e.target as HTMLAudioElement 104 104 const space_tags = ['INPUT', 'TEXTAREA', 'BUTTON', 'SELECT'] 105 - if (el && !space_tags.includes(el.tagName)) { 105 + if (el && !space_tags.includes(el.tagName) && $modal_count === 0) { 106 106 if (e.key === ' ') { 107 107 e.preventDefault() 108 108 play_pause()