diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 14:53:34 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-14 14:53:34 +0000 |
commit | 33ae6be55eaedabd49c8c888ec0b37c612618fdf (patch) | |
tree | 79d28316cdcd02c123236da8111b2035f19a23c7 | |
parent | a156c097ab68fd18145547630d32fbab0673ea53 (diff) | |
download | stable-diffusion-webui-gfx803-33ae6be55eaedabd49c8c888ec0b37c612618fdf.tar.gz stable-diffusion-webui-gfx803-33ae6be55eaedabd49c8c888ec0b37c612618fdf.tar.bz2 stable-diffusion-webui-gfx803-33ae6be55eaedabd49c8c888ec0b37c612618fdf.zip |
fix paste not working in firefox
fix paste always going into txt2img field
-rw-r--r-- | javascript/dragdrop.js | 2 | ||||
-rw-r--r-- | javascript/imageParams.js | 29 |
2 files changed, 14 insertions, 17 deletions
diff --git a/javascript/dragdrop.js b/javascript/dragdrop.js index cf900f50..fe0185a5 100644 --- a/javascript/dragdrop.js +++ b/javascript/dragdrop.js @@ -43,7 +43,7 @@ function dropReplaceImage( imgWrap, files ) { window.document.addEventListener('dragover', e => { const target = e.composedPath()[0]; const imgWrap = target.closest('[data-testid="image"]'); - if ( !imgWrap ) { + if ( !imgWrap && target.placeholder != "Prompt") { return; } e.stopPropagation(); diff --git a/javascript/imageParams.js b/javascript/imageParams.js index f9d0c0aa..4a7b0900 100644 --- a/javascript/imageParams.js +++ b/javascript/imageParams.js @@ -2,21 +2,18 @@ window.onload = (function(){ window.addEventListener('drop', e => { const target = e.composedPath()[0]; const idx = selected_gallery_index(); - let prompt_target = "txt2img_prompt_image"; - if (idx === 1) { - prompt_target = "img2img_prompt_image"; - } - if (target.placeholder === "Prompt") { - e.stopPropagation(); - e.preventDefault(); - const imgParent = gradioApp().getElementById(prompt_target); - const files = e.dataTransfer.files; - const fileInput = imgParent.querySelector('input[type="file"]'); - if ( fileInput ) { - fileInput.files = files; - fileInput.dispatchEvent(new Event('change')); - } + if (target.placeholder != "Prompt") return; + + let prompt_target = get_tab_index('tabs') == 1 ? "img2img_prompt_image" : "txt2img_prompt_image"; + + e.stopPropagation(); + e.preventDefault(); + const imgParent = gradioApp().getElementById(prompt_target); + const files = e.dataTransfer.files; + const fileInput = imgParent.querySelector('input[type="file"]'); + if ( fileInput ) { + fileInput.files = files; + fileInput.dispatchEvent(new Event('change')); } }); - -});
\ No newline at end of file +}); |