mirror of
https://github.com/lllyasviel/Fooocus.git
synced 2026-08-16 13:13:16 +02:00
deactivate global / file style sorter
This commit is contained in:
@@ -34,6 +34,7 @@ def sort_styles(selected):
|
|||||||
global all_styles
|
global all_styles
|
||||||
unselected = [y for y in all_styles if y not in selected]
|
unselected = [y for y in all_styles if y not in selected]
|
||||||
sorted_styles = selected + unselected
|
sorted_styles = selected + unselected
|
||||||
|
"""
|
||||||
try:
|
try:
|
||||||
with open('sorted_styles.json', 'wt', encoding='utf-8') as fp:
|
with open('sorted_styles.json', 'wt', encoding='utf-8') as fp:
|
||||||
json.dump(sorted_styles, fp, indent=4)
|
json.dump(sorted_styles, fp, indent=4)
|
||||||
@@ -41,6 +42,7 @@ def sort_styles(selected):
|
|||||||
print('Write style sorting failed.')
|
print('Write style sorting failed.')
|
||||||
print(e)
|
print(e)
|
||||||
all_styles = sorted_styles
|
all_styles = sorted_styles
|
||||||
|
"""
|
||||||
return gr.CheckboxGroup.update(choices=sorted_styles)
|
return gr.CheckboxGroup.update(choices=sorted_styles)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user