diff options
author | NoCrypt <57245077+NoCrypt@users.noreply.github.com> | 2023-06-28 10:55:58 +0000 |
---|---|---|
committer | NoCrypt <57245077+NoCrypt@users.noreply.github.com> | 2023-06-28 10:55:58 +0000 |
commit | 45ab7475d61fe42b70c37541974c03736cf73189 (patch) | |
tree | f94763545620947261497859e5e3514b8bacbc05 /modules/shared.py | |
parent | da14f6a6632e67cacaeaac7441344f0848f66114 (diff) | |
download | stable-diffusion-webui-gfx803-45ab7475d61fe42b70c37541974c03736cf73189.tar.gz stable-diffusion-webui-gfx803-45ab7475d61fe42b70c37541974c03736cf73189.tar.bz2 stable-diffusion-webui-gfx803-45ab7475d61fe42b70c37541974c03736cf73189.zip |
Revision
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/shared.py b/modules/shared.py index 4a83cca4..22e6bd0b 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -414,9 +414,9 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { "upcast_attn": OptionInfo(False, "Upcast cross attention layer to float32"),
"randn_source": OptionInfo("GPU", "Random number generator source.", gr.Radio, {"choices": ["GPU", "CPU"]}).info("changes seeds drastically; use CPU to produce the same picture across different videocard vendors"),
"font": OptionInfo("", "Font for image grids that have text"),
- "grid_text_color_active": OptionInfo("#000000", "Text color for image grids", ui_components.FormColorPicker, {}),
- "grid_text_color_inactive": OptionInfo("#999999", "Inactive text color for image grids", ui_components.FormColorPicker, {}),
- "grid_background": OptionInfo("#ffffff", "Background color for image grids", ui_components.FormColorPicker, {}),
+ "grid_text_active_color": OptionInfo("#000000", "Text color for image grids", ui_components.FormColorPicker, {}),
+ "grid_text_inactive_color": OptionInfo("#999999", "Inactive text color for image grids", ui_components.FormColorPicker, {}),
+ "grid_background_color": OptionInfo("#ffffff", "Background color for image grids", ui_components.FormColorPicker, {}),
}))
options_templates.update(options_section(('optimizations', "Optimizations"), {
|