Improve status output

This commit is contained in:
henryruhs
2023-06-06 00:21:23 +02:00
parent 58da88e5d6
commit dcfd6cca4d

View File

@@ -140,9 +140,8 @@ def preview_video(video_path):
def status(string):
value = "Status: " + string
if roop.globals.headless:
print(value)
else:
print(value)
if not roop.globals.headless:
ui.update_status_label(value)