Replies: 1 comment 1 reply
-
i'll add it (with some refactoring) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using Hires fix quite a lot, because for me it gives slightly better results.
Generating continuously or using long wildcard lists helps a lot with finding the things I like.
Stopping or Skipping during these processes stops the image processing, which really helps. But still the Hires function is performed.
Here are two changes to
modules/processing.py
that will extend the stop/skip to Hires as well.if not self.enable_hr:
toif not self.enable_hr or state.interrupted or state.skipped:
and add
state.skipped = False
after that to skip the Hires processing
I don't know if this is the best way to do this, but at least it works.
Beta Was this translation helpful? Give feedback.
All reactions