mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-06 05:41:49 -08:00
call the right function for token counter in img2img
This commit is contained in:
parent
b531b0bbef
commit
f6e476d7a8
1 changed files with 1 additions and 1 deletions
|
|
@ -825,7 +825,7 @@ def create_ui():
|
|||
)
|
||||
|
||||
toprow.token_button.click(fn=update_token_counter, inputs=[toprow.prompt, steps], outputs=[toprow.token_counter])
|
||||
toprow.negative_token_button.click(fn=wrap_queued_call(update_token_counter), inputs=[toprow.negative_prompt, steps], outputs=[toprow.negative_token_counter])
|
||||
toprow.negative_token_button.click(fn=wrap_queued_call(update_negative_prompt_token_counter), inputs=[toprow.negative_prompt, steps], outputs=[toprow.negative_token_counter])
|
||||
|
||||
img2img_paste_fields = [
|
||||
(toprow.prompt, "Prompt"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue