Make extra networks button togglable

This commit is contained in:
missionfloyd
2023-03-12 17:07:03 -06:00
parent dfeee786f9
commit 9e23bacfbc
2 changed files with 9 additions and 2 deletions

View File

@@ -219,10 +219,10 @@ def create_ui(container, button, tabname):
def toggle_visibility(is_visible):
is_visible = not is_visible
return is_visible, gr.update(visible=is_visible)
return is_visible, gr.update(visible=is_visible), gr.update(variant=("primary" if is_visible else "tool"))
state_visible = gr.State(value=False)
button.click(fn=toggle_visibility, inputs=[state_visible], outputs=[state_visible, container])
button.click(fn=toggle_visibility, inputs=[state_visible], outputs=[state_visible, container, button])
def refresh():
res = []