Fix SD wand entry not always being clickable

This commit is contained in:
Wolfsblvt 2024-08-03 00:10:46 +02:00
parent 7d46ca212b
commit d84fef0478
1 changed files with 1 additions and 1 deletions

View File

@ -3396,7 +3396,7 @@ async function addSDGenButtons() {
$(document).on('click touchend', function (e) {
const target = $(e.target);
if (target.is(dropdown) || target.closest(dropdown).length) return;
if (target.is(button) && !dropdown.is(':visible') && $('#send_but').is(':visible')) {
if ((target.is(button) || target.closest(button).length) && !dropdown.is(':visible') && $('#send_but').is(':visible')) {
e.preventDefault();
dropdown.fadeIn(animation_duration);