DazDin commited on
Commit
28f9f70
·
verified ·
1 Parent(s): 7afe24b
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def make_me():
49
  stop_button.click(on_stop_click, inputs=None, outputs=[gen_button, stop_button])
50
 
51
  with gr.Row():
52
- output = [gr.Image(label=m, min_width=250, height=250, elem_id="custom_image") for m in default_models]
53
  current_models = [gr.Textbox(m, visible=False) for m in default_models]
54
  for m, o in zip(current_models, output):
55
  gen_event = gen_button.click(gen_fn, [m, txt_input], o)
 
49
  stop_button.click(on_stop_click, inputs=None, outputs=[gen_button, stop_button])
50
 
51
  with gr.Row():
52
+ output = [gr.Image(label=m, min_width=250, height=250, elem_id="custom_image", show_label=True, interactive=True, show_share_button=False) for m in default_models]
53
  current_models = [gr.Textbox(m, visible=False) for m in default_models]
54
  for m, o in zip(current_models, output):
55
  gen_event = gen_button.click(gen_fn, [m, txt_input], o)