Fix: ToggleRecord not updating image

This commit is contained in:
Core447 2024-03-27 10:05:16 +01:00
parent 5bf714fafa
commit 528a3d9920
No known key found for this signature in database
GPG Key ID: 5B97C0BD62F98516
1 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ class ToggleRecord(OBSActionBase):
self.show_error()
return
status = self.plugin_base.backend.get_record_status()
print()
if status is None:
self.current_state = -1
self.show_error()
@ -77,9 +78,9 @@ class ToggleRecord(OBSActionBase):
self.show_error()
return
self.plugin_base.backend.toggle_record()
self.on_tick()
def on_tick(self):
return
self.show_current_rec_status()
def show_rec_time(self):