mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-06 17:22:49 -08:00
fix broken prompts from file
This commit is contained in:
parent
9080af56dd
commit
d274b8297e
2 changed files with 1 additions and 2 deletions
|
|
@ -40,6 +40,7 @@
|
||||||
* Fix MPS on PyTorch 2.0.1, Intel Macs
|
* Fix MPS on PyTorch 2.0.1, Intel Macs
|
||||||
* make it so that custom context menu from contextMenu.js only disappears after user's click, ignoring non-user click events
|
* make it so that custom context menu from contextMenu.js only disappears after user's click, ignoring non-user click events
|
||||||
* prevent Reload UI button/link from reloading the page when it's not yet ready
|
* prevent Reload UI button/link from reloading the page when it's not yet ready
|
||||||
|
* fix prompts from file script failing to read contents from a drag/drop file
|
||||||
|
|
||||||
|
|
||||||
## 1.1.1
|
## 1.1.1
|
||||||
|
|
|
||||||
|
|
@ -103,8 +103,6 @@ def load_prompt_file(file):
|
||||||
return None, "\n".join(lines), gr.update(lines=7)
|
return None, "\n".join(lines), gr.update(lines=7)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Script(scripts.Script):
|
class Script(scripts.Script):
|
||||||
def title(self):
|
def title(self):
|
||||||
return "Prompts from file or textbox"
|
return "Prompts from file or textbox"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue