Commit c74becca authored by Alexandre Simard's avatar Alexandre Simard Committed by AUTOMATIC1111

Solve issue #962

Fix by @MrAcademy
parent 16e7ac09
......@@ -19,4 +19,5 @@ __pycache__
/webui-user.sh
/interrogate
/user.css
/.idea
\ No newline at end of file
/.idea
/SwinIR
// various functions for interation with ui.py not large enough to warrant putting them in separate files
function selected_gallery_index(){
var gr = gradioApp()
var buttons = gradioApp().querySelectorAll(".gallery-item")
var button = gr.querySelector(".gallery-item.\\!ring-2")
var buttons = gradioApp().querySelectorAll('[style="display: block;"].tabitem .gallery-item')
var button = gradioApp().querySelector('[style="display: block;"].tabitem .gallery-item.\\!ring-2')
var result = -1
buttons.forEach(function(v, i){ if(v==button) { result = i } })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment