diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-12-30 12:06:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-30 12:06:39 +0000 |
commit | 1d603eb5a8f577c8fb1ed10785a6d139805101bd (patch) | |
tree | 441757e9560168de2d23ccc200c022cf97088223 | |
parent | 4b6eb8072b7e20ea3e92615bd30efd6d6f7b6c8f (diff) | |
parent | de1809bd14450cfc41623b6021c7087fb385ab6f (diff) | |
download | stable-diffusion-webui-gfx803-1d603eb5a8f577c8fb1ed10785a6d139805101bd.tar.gz stable-diffusion-webui-gfx803-1d603eb5a8f577c8fb1ed10785a6d139805101bd.tar.bz2 stable-diffusion-webui-gfx803-1d603eb5a8f577c8fb1ed10785a6d139805101bd.zip |
Merge pull request #14394 from AUTOMATIC1111/minor-xyz-fix
xyz grid handle axis_type is None
-rw-r--r-- | scripts/xyz_grid.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index b2250c04..e5083874 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -476,6 +476,8 @@ class Script(scripts.Script): fill_z_button.click(fn=fill, inputs=[z_type, csv_mode], outputs=[z_values, z_values_dropdown])
def select_axis(axis_type, axis_values, axis_values_dropdown, csv_mode):
+ axis_type = axis_type or 0 # if axle type is None set to 0
+
choices = self.current_axis_options[axis_type].choices
has_choices = choices is not None
@@ -526,6 +528,8 @@ class Script(scripts.Script): return [x_type, x_values, x_values_dropdown, y_type, y_values, y_values_dropdown, z_type, z_values, z_values_dropdown, draw_legend, include_lone_images, include_sub_grids, no_fixed_seeds, margin_size, csv_mode]
def run(self, p, x_type, x_values, x_values_dropdown, y_type, y_values, y_values_dropdown, z_type, z_values, z_values_dropdown, draw_legend, include_lone_images, include_sub_grids, no_fixed_seeds, margin_size, csv_mode):
+ x_type, y_type, z_type = x_type or 0, y_type or 0, z_type or 0 # if axle type is None set to 0
+
if not no_fixed_seeds:
modules.processing.fix_seed(p)
|