show the preview image in the modalview if available

This commit is contained in:
Won-Kyu Park 2023-10-01 20:18:25 +09:00
parent 7d60076b8b
commit dbb10fbd8c
No known key found for this signature in database
GPG Key ID: 53AA79C8C9535D15
1 changed files with 5 additions and 2 deletions

View File

@ -33,8 +33,11 @@ function updateOnBackgroundChange() {
const modalImage = gradioApp().getElementById("modalImage");
if (modalImage && modalImage.offsetParent) {
let currentButton = selected_gallery_button();
if (currentButton?.children?.length > 0 && modalImage.src != currentButton.children[0].src) {
let preview = gradioApp().querySelectorAll('.livePreview > img');
if (preview.length > 0) {
// show preview image if available
modalImage.src = preview[preview.length - 1].src;
} else if (currentButton?.children?.length > 0 && modalImage.src != currentButton.children[0].src) {
modalImage.src = currentButton.children[0].src;
if (modalImage.style.display === 'none') {
const modal = gradioApp().getElementById("lightboxModal");