diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-04 15:39:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-04 15:39:57 +0000 |
commit | 37aafdb059fc038df7217a907048f7eb61f0beee (patch) | |
tree | 5ddecfd6d96d6bb1fea556a75fff58782ffcec3b /scripts/custom_code.py | |
parent | 4fbdbddc18b21f712acae58bf41740d27023285f (diff) | |
parent | a8eb9e3bf814f72293e474c11e9ff0098859a942 (diff) | |
download | stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.tar.gz stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.tar.bz2 stable-diffusion-webui-gfx803-37aafdb059fc038df7217a907048f7eb61f0beee.zip |
Merge branch 'master' into master
Diffstat (limited to 'scripts/custom_code.py')
-rw-r--r-- | scripts/custom_code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/custom_code.py b/scripts/custom_code.py index a9b10c09..22e7b77a 100644 --- a/scripts/custom_code.py +++ b/scripts/custom_code.py @@ -14,7 +14,7 @@ class Script(scripts.Script): return cmd_opts.allow_code
def ui(self, is_img2img):
- code = gr.Textbox(label="Python code", visible=False, lines=1)
+ code = gr.Textbox(label="Python code", lines=1)
return [code]
|