fix: Correct before image saved callback

This commit is contained in:
MMaker 2022-10-26 11:08:44 -04:00
parent 99d728b5b1
commit 0dd8480281
No known key found for this signature in database
GPG Key ID: CCE79B8FEDA40FB2

View File

@ -69,7 +69,7 @@ def ui_settings_callback():
def before_image_saved_callback(params: ImageSaveParams): def before_image_saved_callback(params: ImageSaveParams):
for c in callbacks_image_saved: for c in callbacks_before_image_saved:
try: try:
c.callback(params) c.callback(params)
except Exception: except Exception: