charliebaby2023 commited on
Commit
5df1c2c
·
verified ·
1 Parent(s): da8cb40

Update frontend/webui/ui.py

Browse files
Files changed (1) hide show
  1. frontend/webui/ui.py +3 -2
frontend/webui/ui.py CHANGED
@@ -72,12 +72,13 @@ def get_web_ui() -> gr.Blocks:
72
  with gr.Tabs():
73
  with gr.TabItem("Text to Image"):
74
  get_text_to_image_ui()
 
75
  with gr.TabItem("Image to Image"):
76
  get_image_to_image_ui()
77
  with gr.TabItem("Image Variations"):
78
  get_image_variations_ui()
79
- with gr.TabItem("Generation Settings"):
80
- get_generation_settings_ui()
81
  with gr.TabItem("Models"):
82
  get_models_ui()
83
 
 
72
  with gr.Tabs():
73
  with gr.TabItem("Text to Image"):
74
  get_text_to_image_ui()
75
+ get_generation_settings_ui()
76
  with gr.TabItem("Image to Image"):
77
  get_image_to_image_ui()
78
  with gr.TabItem("Image Variations"):
79
  get_image_variations_ui()
80
+ #with gr.TabItem("Generation Settings"):
81
+ # get_generation_settings_ui()
82
  with gr.TabItem("Models"):
83
  get_models_ui()
84