diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-17 13:35:58 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-17 13:35:58 +0000 |
commit | 56ff118845748d1302968039e13703b6ad8107c4 (patch) | |
tree | b241e21aeae3ee7a0170d5f7a3d1702636fea26d /modules/ui.py | |
parent | 8d197b6a92fbcea8e3394159247c19cea080c975 (diff) | |
download | stable-diffusion-webui-gfx803-56ff118845748d1302968039e13703b6ad8107c4.tar.gz stable-diffusion-webui-gfx803-56ff118845748d1302968039e13703b6ad8107c4.tar.bz2 stable-diffusion-webui-gfx803-56ff118845748d1302968039e13703b6ad8107c4.zip |
typo
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 b97ffd07..2f6eb307 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -801,7 +801,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): with open(os.path.join(script_path, "style.css"), "r", encoding="utf8") as file:
css = file.read()
- if os.path.exists(os.path.join(script_path, "style.css")):
+ if os.path.exists(os.path.join(script_path, "user.css")):
with open(os.path.join(script_path, "user.css"), "r", encoding="utf8") as file:
usercss = file.read()
css += usercss
|