Skip to content

Commit

Permalink
fix dedicated page output panel buttons for sd 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
light-and-ray committed Mar 2, 2024
1 parent 8d6cbaa commit 1fa0fe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions replacer/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ def watchOuputPanel(component, **kwargs):
if elem_id is None:
return

if elem_id == 'replacer_send_to_img2img':
if elem_id == 'replacer_send_to_img2img' or elem_id == 'img2img_tab':
OuputPanelWatcher.send_to_img2img = component

if elem_id == 'replacer_send_to_inpaint':
if elem_id == 'replacer_send_to_inpaint' or elem_id == 'inpaint_tab':
OuputPanelWatcher.send_to_inpaint = component

if elem_id == 'replacer_send_to_extras':
if elem_id == 'replacer_send_to_extras' or elem_id == 'extras_tab':
OuputPanelWatcher.send_to_extras = component


0 comments on commit 1fa0fe7

Please sign in to comment.