order matters here
This commit is contained in:
parent
624574df3d
commit
ba4882011f
|
@ -108,13 +108,13 @@ class SoundLib:
|
||||||
}
|
}
|
||||||
|
|
||||||
self._ttsSounds = TTSCache(psutil.virtual_memory().total * 0.001)
|
self._ttsSounds = TTSCache(psutil.virtual_memory().total * 0.001)
|
||||||
|
self._lock = RLock()
|
||||||
|
|
||||||
self.volume = 100
|
self.volume = 100
|
||||||
self._applyVolumesToSounds(self.volume)
|
self._applyVolumesToSounds(self.volume)
|
||||||
|
|
||||||
self._ttsQueue = queue.Queue()
|
self._ttsQueue = queue.Queue()
|
||||||
self._stopper = Event()
|
self._stopper = Event()
|
||||||
self._lock = RLock()
|
|
||||||
|
|
||||||
def start(self):
|
def start(self):
|
||||||
self._startMonitor()
|
self._startMonitor()
|
||||||
|
|
Loading…
Reference in New Issue