DominikDoom / a1111-sd-webui-tagcomplete

Booru style tag autocompletion for AUTOMATIC1111's Stable Diffusion web UI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No longer seems to work with SD.Next in third party textboxes

Nalwonk opened this issue · comments

I don't get the tag complete window in any textboxes outside the Prompt/Negative Prompt box in From Image and From Text

It works perfectly fine within those boxes in those tabs, but it no longer works at all anywhere else.

Update:
After taking a look at the SD.Next changelog, I've found that this is the same issue as #213.
This is due to a Gradio version update. SD.Next overrides this change for normal prompts, but not for other textboxes.
So this will require a fix on SD.Next's side, until then I can't do much about it.

Dataset Tag Editor (specifically, I'd like it to work in Edit Caption, but it doesn't seem to work anywhere), and the Image Browser textboxes are no longer working on my end, but used to.

EDIT: Didn't see the second reply, thanks for getting back to me

Yeah, all gradio based textboxes are affected by it.
I initially tested Image Browser on the normal webui in case it stopped working without me noticing, but didn't remember to test it in SD.Next too before sending my questions. It's hidden for me there as well.

The easiest way to fix this is on SD.Next's side like I mentioned, also see the linked issue in the feed here for more info.
I imagine it won't take that long, but
in the meantime you could add the following to your user.css file:

.block.gradio-textbox {
    overflow: visible !important;
}

which should fix it in all textboxes.

Edit: Speak of the devil, vlad already added the fix into the dev branch just now. So the next update will fix it.