Skip to content

Commit beb6fc2

Browse files
committed
move send seed option to UI section and make it false by default
1 parent 9553a7e commit beb6fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,6 @@ def options_section(section_identifier, options_dict):
280280
"filter_nsfw": OptionInfo(False, "Filter NSFW content"),
281281
'CLIP_stop_at_last_layers': OptionInfo(1, "Stop At last layers of CLIP model", gr.Slider, {"minimum": 1, "maximum": 12, "step": 1}),
282282
"random_artist_categories": OptionInfo([], "Allowed categories for random artists selection when using the Roll button", gr.CheckboxGroup, {"choices": artist_db.categories()}),
283-
"send_seed": OptionInfo(False, "Send seed when sending prompt or image to other interface"),
284283
}))
285284

286285
options_templates.update(options_section(('interrogate', "Interrogate Options"), {
@@ -306,6 +305,7 @@ def options_section(section_identifier, options_dict):
306305
"add_model_hash_to_info": OptionInfo(True, "Add model hash to generation information"),
307306
"add_model_name_to_info": OptionInfo(False, "Add model name to generation information"),
308307
"disable_weights_auto_swap": OptionInfo(False, "When reading generation parameters from text into UI (from PNG info or pasted text), do not change the selected model/checkpoint."),
308+
"send_seed": OptionInfo(True, "Send seed when sending prompt or image to other interface"),
309309
"font": OptionInfo("", "Font for image grids that have text"),
310310
"js_modal_lightbox": OptionInfo(True, "Enable full page image viewer"),
311311
"js_modal_lightbox_initially_zoomed": OptionInfo(True, "Show images zoomed in by default in full page image viewer"),

0 commit comments

Comments
 (0)