call the right function for token counter in img2img

This commit is contained in:
AUTOMATIC1111 2024-02-11 12:24:02 +03:00
parent b531b0bbef
commit f6e476d7a8
1 changed files with 1 additions and 1 deletions

View File

@ -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"),