diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-19 09:48:49 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-12-19 09:48:49 +0000 |
commit | 3e068de0dcec811d515402fc184f70709a785e4f (patch) | |
tree | 186b225b5ba0eef86f3025b24e0b59521266bf2a /scripts/processing_autosized_crop.py | |
parent | de03882d6ca56bc81058f5120f028678a6a54aaa (diff) | |
download | stable-diffusion-webui-gfx803-3e068de0dcec811d515402fc184f70709a785e4f.tar.gz stable-diffusion-webui-gfx803-3e068de0dcec811d515402fc184f70709a785e4f.tar.bz2 stable-diffusion-webui-gfx803-3e068de0dcec811d515402fc184f70709a785e4f.zip |
reorder training preprocessing modules in extras tab
using the order from before the rework
11d23e8ca55c097ecfa255a05b63f194e25f08be
Diffstat (limited to 'scripts/processing_autosized_crop.py')
-rw-r--r-- | scripts/processing_autosized_crop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/processing_autosized_crop.py b/scripts/processing_autosized_crop.py index c0980226..7e674989 100644 --- a/scripts/processing_autosized_crop.py +++ b/scripts/processing_autosized_crop.py @@ -28,7 +28,7 @@ def multicrop_pic(image: Image, mindim, maxdim, minarea, maxarea, objective, thr class ScriptPostprocessingAutosizedCrop(scripts_postprocessing.ScriptPostprocessing):
name = "Auto-sized crop"
- order = 4000
+ order = 4020
def ui(self):
with ui_components.InputAccordion(False, label="Auto-sized crop") as enable:
|