aboutsummaryrefslogtreecommitdiff
path: root/src/component.py
diff options
context:
space:
mode:
authortassaron2017-07-29 23:45:37 -0400
committertassaron2017-07-29 23:45:37 -0400
commitdb1ea1fc4edf19589e82171d48c417742c61c74b (patch)
tree61058487ca96905f6f722498e0f6f2fc69dbb7c4 /src/component.py
parent1297af61c9ce00b6dd76f8ec690baedf5bf887c7 (diff)
generic preview sound for waveform component
with secret preference to use the audio file again
Diffstat (limited to 'src/component.py')
-rw-r--r--src/component.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/component.py b/src/component.py
index fc8fbd3..6d49406 100644
--- a/src/component.py
+++ b/src/component.py
@@ -427,7 +427,7 @@ class ComponentError(RuntimeError):
ComponentError.prevErrors.insert(0, name)
curTime = time.time()
if name in ComponentError.prevErrors[1:] \
- and curTime - ComponentError.lastTime < 0.2:
+ and curTime - ComponentError.lastTime < 1.0:
# Don't create multiple windows for quickly repeated messages
return
ComponentError.lastTime = time.time()