diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-02 16:26:18 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-02 16:26:18 +0000 |
commit | efa0a6483c9dfbdde6717bec202942c6036e72ff (patch) | |
tree | c3ced9eca3eeb30ede46cbc582604fd75973fca2 /webui.py | |
parent | 20008303428fed569d32ed05c21524ea81735207 (diff) | |
download | stable-diffusion-webui-gfx803-efa0a6483c9dfbdde6717bec202942c6036e72ff.tar.gz stable-diffusion-webui-gfx803-efa0a6483c9dfbdde6717bec202942c6036e72ff.tar.bz2 stable-diffusion-webui-gfx803-efa0a6483c9dfbdde6717bec202942c6036e72ff.zip |
change webui.bat to use venv
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -633,9 +633,9 @@ def draw_xy_grid(xs, ys, x_label, y_label, cell): for y in ys:
for x in xs:
+ state.job = f"{x + y * len(xs)} out of {len(xs) * len(ys)}"
res.append(cell(x, y))
-
grid = image_grid(res, rows=len(ys))
grid = draw_grid_annotations(grid, res[0].width, res[0].height, hor_texts, ver_texts)
|