yfszzx / stable-diffusion-webui-inspiration

114 stars 23 forks source link

Option to start with check boxes unchecked. #26

Open MrKuenning opened 1 year ago

MrKuenning commented 1 year ago

I love using this extension to showcase various models and styles, but I find it annoying that every check box is checked every time I load up SD.

2022-12-11 11_24_59-Stable Diffusion Because it tries to load and sort on every check box change, not only do I have to uncheck a dozen check boxes, but I also have to wait and let it load each combination of groups as I uncheck them.

2022-12-11 11_31_24-Stable Diffusion

Thanks for your hard work.

floorcat commented 1 year ago

Before an actual option is added, it's a simple change in inspiration.py

change line 238: types = gr.CheckboxGroup(choices=types, value=types)

to: types = gr.CheckboxGroup(choices=types, value=None)

MrKuenning commented 1 year ago

Thank you this helped a lot.