Skip to content

Commit

Permalink
fix tooltip not appearing for the shuffle button
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 committed Sep 18, 2022
1 parent abd5cc6 commit ba97889
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ def create_seed_inputs():
with gr.Row(elem_id='seed_row'):
seed = gr.Number(label='Seed', value=-1)
seed.style(container=False)
random_seed = gr.Button('🎲', elem_id='random_seed')
reuse_seed = gr.Button('♻️', elem_id='reuse_seed')
random_seed = gr.Button(random_symbol, elem_id='random_seed')
reuse_seed = gr.Button(reuse_symbol, elem_id='reuse_seed')

with gr.Box(elem_id='subseed_show_box'):
seed_checkbox = gr.Checkbox(label='Extra', elem_id='subseed_show', value=False)
Expand Down

0 comments on commit ba97889

Please sign in to comment.