diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 20:17:28 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 20:17:28 +0000 |
commit | cd58e44051f658f2efb544203a92837f43786372 (patch) | |
tree | 72c7385bbf673820db51e9bc3a5605c45288571b /modules/ui.py | |
parent | 03d62538aebeff51713619fe808c953bdb70193d (diff) | |
download | stable-diffusion-webui-gfx803-cd58e44051f658f2efb544203a92837f43786372.tar.gz stable-diffusion-webui-gfx803-cd58e44051f658f2efb544203a92837f43786372.tar.bz2 stable-diffusion-webui-gfx803-cd58e44051f658f2efb544203a92837f43786372.zip |
disabling history - i knew it was slow as fuck but i didn't realize it would also show galleries on launch
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/ui.py b/modules/ui.py index a08ffc9b..6d193955 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1089,7 +1089,8 @@ def create_ui(wrap_gradio_gpu_call): "t2i":txt2img_paste_fields,
"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):
@@ -1486,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"),
|