Explorar el Código

fix: adjust queue lyrics fetch debounce

Sven hace 1 año
padre
commit
5cfde4091c
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/features/layout.ts

+ 1 - 1
src/features/layout.ts

@@ -95,7 +95,7 @@ export function initQueueButtons() {
 }
 
 /** For how long the user needs to hover over the song info to fetch the lyrics */
-const queueBtnLyricsLoadDebounce = 250;
+const queueBtnLyricsLoadDebounce = 350;
 
 async function addQueueButtons(queueItem: HTMLElement) {
   const queueBtnsCont = document.createElement("div");