소스 검색

fix: adjust queue lyrics fetch debounce

Sven 1 년 전
부모
커밋
5cfde4091c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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");