Parcourir la source

fix: adjust queue lyrics fetch debounce

Sven il y a 1 an
Parent
commit
2ac82ab25b
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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");