diff options
author | Mitchell Boot <47387831+Mitchell1711@users.noreply.github.com> | 2023-01-06 17:24:29 +0000 |
---|---|---|
committer | Mitchell Boot <47387831+Mitchell1711@users.noreply.github.com> | 2023-01-06 17:24:29 +0000 |
commit | 991368c8d54404d8e13d4c6e76a0f32644e65ad4 (patch) | |
tree | 4b17668c38ab8edf09c04aa46fb69ccf15d1de5b /modules/ui.py | |
parent | 3992ecbe6e46a465062508c677964534e7397f72 (diff) | |
download | stable-diffusion-webui-gfx803-991368c8d54404d8e13d4c6e76a0f32644e65ad4.tar.gz stable-diffusion-webui-gfx803-991368c8d54404d8e13d4c6e76a0f32644e65ad4.tar.bz2 stable-diffusion-webui-gfx803-991368c8d54404d8e13d4c6e76a0f32644e65ad4.zip |
remove camelcase
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 20f7d2a2..6fc8b7d7 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -260,7 +260,7 @@ def calc_resolution_hires(x, y, scale): scaled_x = int(x * scale // 8) * 8
scaled_y = int(y * scale // 8) * 8
- return "<p style='margin: -1em 0em 0.7em 1.35em'>Upscaled Resolution: "+str(scaled_x)+"x"+str(scaled_y)+"</p>"
+ return "<p style='margin: -1em 0em 0.7em 1.35em'>Upscaled resolution: "+str(scaled_x)+"x"+str(scaled_y)+"</p>"
def apply_styles(prompt, prompt_neg, style1_name, style2_name):
prompt = shared.prompt_styles.apply_styles_to_prompt(prompt, [style1_name, style2_name])
|