fix: respond immediately to rapid queue detail toggles
Windows CI / verify (push) Canceled after 0s

This commit is contained in:
Sucukdeluxe
2026-09-06 12:45:02 +02:00
parent 98c3c01fd3
commit 9fec291b45
4 changed files with 7 additions and 2 deletions
-1
View File
@@ -135,7 +135,6 @@ function initQueueActions(): void {
list.addEventListener('click', (event: MouseEvent) => {
const control = resolveQueueControl(event.target);
if (!control || !list.contains(control)) return;
if (control.dataset.queueAction === 'details' && event.detail > 1) return;
void activateQueueControl(control);
});
list.addEventListener('dblclick', (event: MouseEvent) => {