diff options
author | Vladimir Mandic <mandic00@live.com> | 2023-01-23 12:25:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-23 12:25:07 -0500 |
commit | efa7287be0a018dcb92e362460cbe19d42d70b03 (patch) | |
tree | 5ca63fd1273dbd396453a29cbb7ee913c3d29880 /modules/shared.py | |
parent | 925dd09c91e7338aef72e4ec99d67b8b57280215 (diff) | |
parent | c6f20f72629f3c417f10db2289d131441c6832f5 (diff) |
Merge branch 'AUTOMATIC1111:master' into interrogate
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 63b236c5..d7a18f6a 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -432,6 +432,10 @@ options_templates.update(options_section(('interrogate', "Interrogate Options"), "deepbooru_filter_tags": OptionInfo("", "filter out those tags from deepbooru output (separated by comma)"),
}))
+options_templates.update(options_section(('extra_networks', "Extra Networks"), {
+ "extra_networks_default_view": OptionInfo("cards", "Default view for Extra Networks", gr.Dropdown, { "choices": ["cards", "thumbs"] }),
+}))
+
options_templates.update(options_section(('ui', "User interface"), {
"return_grid": OptionInfo(True, "Show grid in results for web"),
"do_not_show_images": OptionInfo(False, "Do not show any images in results for web"),
|