Solve issue #962

Fix by @MrAcademy
This commit is contained in:
Alexandre Simard 2022-09-26 17:18:57 -04:00
parent 78d6aef302
commit 9e737cbadc
2 changed files with 4 additions and 4 deletions

1
.gitignore vendored
View File

@ -20,3 +20,4 @@ __pycache__
/interrogate /interrogate
/user.css /user.css
/.idea /.idea
/SwinIR

View File

@ -1,9 +1,8 @@
// various functions for interation with ui.py not large enough to warrant putting them in separate files // various functions for interation with ui.py not large enough to warrant putting them in separate files
function selected_gallery_index(){ function selected_gallery_index(){
var gr = gradioApp() var buttons = gradioApp().querySelectorAll('[style="display: block;"].tabitem .gallery-item')
var buttons = gradioApp().querySelectorAll(".gallery-item") var button = gradioApp().querySelector('[style="display: block;"].tabitem .gallery-item.\\!ring-2')
var button = gr.querySelector(".gallery-item.\\!ring-2")
var result = -1 var result = -1
buttons.forEach(function(v, i){ if(v==button) { result = i } }) buttons.forEach(function(v, i){ if(v==button) { result = i } })