diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-10-14 04:35:06 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-10-14 04:35:06 +0000 |
commit | 3a66c3c9e1cecab5095f37964d40a5f4cde317af (patch) | |
tree | dc9f7c06b9a2e767e807599567daf93e47d123b6 /modules/shared_options.py | |
parent | 499543cf1deb382ef9414e601ebef0015248b7ea (diff) | |
download | stable-diffusion-webui-gfx803-3a66c3c9e1cecab5095f37964d40a5f4cde317af.tar.gz stable-diffusion-webui-gfx803-3a66c3c9e1cecab5095f37964d40a5f4cde317af.tar.bz2 stable-diffusion-webui-gfx803-3a66c3c9e1cecab5095f37964d40a5f4cde317af.zip |
put notification.mp3 option at the end of the page
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index cb356638..ce395302 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -22,7 +22,6 @@ restricted_opts = { }
options_templates.update(options_section(('saving-images', "Saving images/grids"), {
- "notification_audio": OptionInfo(True, "Play notification sound after image generation", comment_after="(notification.mp3 should be present in the root directory)").needs_reload_ui(),
"samples_save": OptionInfo(True, "Always save all generated images"),
"samples_format": OptionInfo('png', 'File format for images'),
"samples_filename_pattern": OptionInfo("", "Images filename pattern", component_args=hide_dirs).link("wiki", "https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Images-Filename-Name-and-Subdirectory"),
@@ -63,6 +62,8 @@ options_templates.update(options_section(('saving-images', "Saving images/grids" "clean_temp_dir_at_start": OptionInfo(False, "Cleanup non-default temporary directory when starting webui"),
"save_incomplete_images": OptionInfo(False, "Save incomplete images").info("save images that has been interrupted in mid-generation; even if not saved, they will still show up in webui output."),
+
+ "notification_audio": OptionInfo(True, "Play notification sound after image generation").info("notification.mp3 should be present in the root directory").needs_reload_ui(),
}))
options_templates.update(options_section(('saving-paths', "Paths for saving"), {
|