You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've run into an EXTREMELY frustrating issue that will hopefully be an easy fix.
When using regional control prompts that are several lines long, you need to expand the text area vertically to see this entire prompt - this is normal. However, whenever you press Enter/Return while editing that long prompt (and without changing focus from that text area), the text area size will immediately return to the default size -- this is insanely annoying and makes editing long regional area prompts extremely frustrating.
My suggested fix: text areas should not automatically resize when the user presses the Enter key (or Shift-Enter to create a line break) while editing a prompt and the text area remains in focus.
This occurs on Windows 10, latest Firefox, using LobeHub UI. I've not tested it on other browsers or default Stable Diffusion UI/A1111.
The text was updated successfully, but these errors were encountered:
I replaced the code line 212-13 in tilediffusion.py can be replaced with:
prompt = gr.Text(show_label=False, placeholder=f'Prompt, will append to your {tab} prompt', lines=2, elem_id=f'MD-{tab}-{i}-prompt', elem_classes=["prompt"])
neg_prompt = gr.Text(show_label=False, placeholder='Negative Prompt, will also be appended', lines=2, elem_id=f'MD-{tab}-{i}-neg-prompt', elem_classes=["prompt"])
I've run into an EXTREMELY frustrating issue that will hopefully be an easy fix.
When using regional control prompts that are several lines long, you need to expand the text area vertically to see this entire prompt - this is normal. However, whenever you press Enter/Return while editing that long prompt (and without changing focus from that text area), the text area size will immediately return to the default size -- this is insanely annoying and makes editing long regional area prompts extremely frustrating.
My suggested fix: text areas should not automatically resize when the user presses the Enter key (or Shift-Enter to create a line break) while editing a prompt and the text area remains in focus.
This occurs on Windows 10, latest Firefox, using LobeHub UI. I've not tested it on other browsers or default Stable Diffusion UI/A1111.
The text was updated successfully, but these errors were encountered: