mirror of
https://github.com/vegu-ai/talemate.git
synced 2025-12-16 11:47:48 +01:00
Reduce debounce time for scene status emission from 50ms to 25ms for improved responsiveness.
This commit is contained in:
@@ -1462,7 +1462,7 @@ class Scene(Emitter):
|
||||
|
||||
async def _debounced_emit_status(self, restored: bool = False):
|
||||
"""Internal method for debounced emission"""
|
||||
await asyncio.sleep(0.05) # 50ms debounce
|
||||
await asyncio.sleep(0.025) # 25ms debounce
|
||||
self._emit_status_debounce_task = None
|
||||
self._do_emit_status(restored)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user