diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-03-25 05:54:01 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-03-25 06:00:38 +0000 |
commit | 58c3144d2b2ea61363e823d85658c0278860e9a4 (patch) | |
tree | 0bebc703eddd79a76a5ed1c06b517b55df7d4522 /javascript | |
parent | 133fd7bea558467bce245da2b1df227fed859732 (diff) | |
download | stable-diffusion-webui-gfx803-58c3144d2b2ea61363e823d85658c0278860e9a4.tar.gz stable-diffusion-webui-gfx803-58c3144d2b2ea61363e823d85658c0278860e9a4.tar.bz2 stable-diffusion-webui-gfx803-58c3144d2b2ea61363e823d85658c0278860e9a4.zip |
fix generate forever and other context menus
Diffstat (limited to 'javascript')
-rw-r--r-- | javascript/contextMenus.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/contextMenus.js b/javascript/contextMenus.js index 11bcce1b..06f505b0 100644 --- a/javascript/contextMenus.js +++ b/javascript/contextMenus.js @@ -43,7 +43,7 @@ contextMenuInit = function(){ })
- gradioApp().getRootNode().appendChild(contextMenu)
+ gradioApp().appendChild(contextMenu)
let menuWidth = contextMenu.offsetWidth + 4;
let menuHeight = contextMenu.offsetHeight + 4;
|