diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-28 15:45:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-28 15:45:38 +0000 |
commit | 91c8d0dcfc9a5d46aec47fd3eb34c633c104b5bb (patch) | |
tree | a6b0396e2fbf2fe1ca0238a5239f6176b32c5a53 /scripts | |
parent | fecb990debdae2cc99b64808d22ba902e34e575b (diff) | |
parent | 591b68e56c53eed391d08ce008423191c573784d (diff) | |
download | stable-diffusion-webui-gfx803-91c8d0dcfc9a5d46aec47fd3eb34c633c104b5bb.tar.gz stable-diffusion-webui-gfx803-91c8d0dcfc9a5d46aec47fd3eb34c633c104b5bb.tar.bz2 stable-diffusion-webui-gfx803-91c8d0dcfc9a5d46aec47fd3eb34c633c104b5bb.zip |
Merge pull request #7231 from EllangoK/master
Fixes X/Y/Z Plot parameters not being restored from images
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/xyz_grid.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/xyz_grid.py b/scripts/xyz_grid.py index f0116055..3df40483 100644 --- a/scripts/xyz_grid.py +++ b/scripts/xyz_grid.py @@ -383,6 +383,15 @@ class Script(scripts.Script): y_type.change(fn=select_axis, inputs=[y_type], outputs=[fill_y_button])
z_type.change(fn=select_axis, inputs=[z_type], outputs=[fill_z_button])
+ self.infotext_fields = (
+ (x_type, "X Type"),
+ (x_values, "X Values"),
+ (y_type, "Y Type"),
+ (y_values, "Y Values"),
+ (z_type, "Z Type"),
+ (z_values, "Z Values"),
+ )
+
return [x_type, x_values, y_type, y_values, z_type, z_values, draw_legend, include_lone_images, include_sub_grids, no_fixed_seeds]
def run(self, p, x_type, x_values, y_type, y_values, z_type, z_values, draw_legend, include_lone_images, include_sub_grids, no_fixed_seeds):
@@ -542,6 +551,7 @@ class Script(scripts.Script): if grid_infotext[0] is None:
pc.extra_generation_params = copy(pc.extra_generation_params)
+ pc.extra_generation_params['Script'] = self.title()
if x_opt.label != 'Nothing':
pc.extra_generation_params["X Type"] = x_opt.label
|