From 0df1f8241d7e2ece22a73a3614de1e1200546367 Mon Sep 17 00:00:00 2001 From: Denis Thiessen Date: Tue, 18 Jun 2024 14:48:43 +0200 Subject: [PATCH] fix: Fixed timeout for detail sonifications for "hold" event. --- src/core/audio/AudioHandler.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/audio/AudioHandler.jsx b/src/core/audio/AudioHandler.jsx index 0e96860..fba9cd2 100644 --- a/src/core/audio/AudioHandler.jsx +++ b/src/core/audio/AudioHandler.jsx @@ -177,7 +177,7 @@ export function playTabModelSonification(pannerVal, frequencyVal, endReached) { offCooldown = true; synth.disconnect(); loop.stop(); - }, 500); + }, 900); } } @@ -231,6 +231,6 @@ export function playDetailModelSonification(textDensity, linkDensity) { synth.disconnect(); reverbSynth.disconnect(); Tone.Transport.stop(); - }, 500); + }, 900); } }