Merge pull request #6778 from pangbo13/master

Fix unexpected behavior when show_progress_every_n_steps is set to -1
This commit is contained in:
AUTOMATIC1111 2023-01-15 22:54:14 +03:00 committed by GitHub
commit 4385449933
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,7 +228,7 @@ class State:
if not parallel_processing_allowed:
return
if self.sampling_step - self.current_image_sampling_step >= opts.show_progress_every_n_steps and opts.live_previews_enable:
if self.sampling_step - self.current_image_sampling_step >= opts.show_progress_every_n_steps and opts.live_previews_enable and opts.show_progress_every_n_steps != -1:
self.do_set_current_image()
def do_set_current_image(self):