diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 21:43:15 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 21:43:15 +0000 |
commit | acedbe67d2b8a3af99ca3b9a2f809e7a2db285d1 (patch) | |
tree | 46becaa7a6bbbe261b1878df51ce478243be8e9d /modules/ui.py | |
parent | 4bbe5d62e042e78cfe1dc83492c2398a39a2455c (diff) | |
download | stable-diffusion-webui-gfx803-acedbe67d2b8a3af99ca3b9a2f809e7a2db285d1.tar.gz stable-diffusion-webui-gfx803-acedbe67d2b8a3af99ca3b9a2f809e7a2db285d1.tar.bz2 stable-diffusion-webui-gfx803-acedbe67d2b8a3af99ca3b9a2f809e7a2db285d1.zip |
bring history tab back, make it behave; it's still slow but won't fuck anything up until you use it
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index c5d295ea..1bc919c7 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1090,7 +1090,7 @@ def create_ui(wrap_gradio_gpu_call): "i2i":img2img_paste_fields
}
- #images_history = img_his.create_history_tabs(gr, opts, wrap_gradio_call(modules.extras.run_pnginfo), images_history_switch_dict)
+ images_history = img_his.create_history_tabs(gr, opts, wrap_gradio_call(modules.extras.run_pnginfo), images_history_switch_dict)
with gr.Blocks() as modelmerger_interface:
with gr.Row().style(equal_height=False):
@@ -1487,7 +1487,7 @@ Requested path was: {f} (img2img_interface, "img2img", "img2img"),
(extras_interface, "Extras", "extras"),
(pnginfo_interface, "PNG Info", "pnginfo"),
- #(images_history, "History", "images_history"),
+ (images_history, "History", "images_history"),
(modelmerger_interface, "Checkpoint Merger", "modelmerger"),
(train_interface, "Train", "ti"),
(settings_interface, "Settings", "settings"),
|