Browse Source

call the right function for token counter in img2img

AUTOMATIC1111 1 year ago
parent
commit
f6e476d7a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      modules/ui.py

+ 1 - 1
modules/ui.py

@@ -825,7 +825,7 @@ def create_ui():
             )
             )
 
 
             toprow.token_button.click(fn=update_token_counter, inputs=[toprow.prompt, steps], outputs=[toprow.token_counter])
             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 = [
             img2img_paste_fields = [
                 (toprow.prompt, "Prompt"),
                 (toprow.prompt, "Prompt"),