mcmonkeyprojects / sd-infinity-grid-generator-script

Infinite-Axis Grid Generator for Stable Diffusion!
MIT License
180 stars 24 forks source link

Multiple styles in a single axis value doesn't work #131

Open heftig opened 7 months ago

heftig commented 7 months ago

Using Styles = style 1 || style 1,style 2 in the UI produces an error:

RuntimeError: Invalid axis 2 'Styles':
  errored: value 'style 1,style 2'
  errored: Invalid parameter 'styles' as 'style 1,style 2':
  not matched to any entry in list ['style 1', 'style 2']

It seems the value validation expects a single style for each value, even though apply_styles will split the value at , later.

(PS: apply_styles should probably also strip each style after splitting to ignore surrounding whitespace.)