diff --git a/modules/shared.py b/modules/shared.py index c10e5a54..1206cb4c 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -110,11 +110,11 @@ class Options: "outdir_txt2img_grids": OptionInfo("outputs/txt2img-grids", 'Output directory for txt2img grids', component_args=hide_dirs), "outdir_img2img_grids": OptionInfo("outputs/img2img-grids", 'Output directory for img2img grids', component_args=hide_dirs), "outdir_save": OptionInfo("log/images", "Directory for saving images using the Save button", component_args=hide_dirs), - "samples_save": OptionInfo(True, "Save individual samples"), - "save_selected_only": OptionInfo(False, "Save selected image only, not entire job"), + "samples_save": OptionInfo(True, "Always save all generated images"), + "save_selected_only": OptionInfo(False, "When using 'Save' button, only save a single selected image"), "samples_format": OptionInfo('png', 'File format for individual samples'), "filter_nsfw": OptionInfo(False, "Filter NSFW content"), - "grid_save": OptionInfo(True, "Save image grids"), + "grid_save": OptionInfo(True, "Always save all generated image grids"), "return_grid": OptionInfo(True, "Show grid in results for web"), "grid_format": OptionInfo('png', 'File format for grids'), "grid_extended_filename": OptionInfo(False, "Add extended info (seed, prompt) to filename when saving grid"),