remove extra 100ms timeout

This commit is contained in:
ruocaled 2022-10-14 19:25:30 -07:00 committed by AUTOMATIC1111
parent c7cd2fda5a
commit 661a61985c
1 changed files with 1 additions and 3 deletions

View File

@ -74,9 +74,7 @@ function check_gallery(id_gallery){
if (prevSelectedIndex !== -1 && galleryButtons.length>prevSelectedIndex && !galleryBtnSelected) {
//automatically re-open previously selected index (if exists)
galleryButtons[prevSelectedIndex].click();
setTimeout(function (){
showGalleryImage()
},100)
showGalleryImage();
}
})
galleryObservers[id_gallery].observe( gallery, { childList:true, subtree:false })