diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-04 07:54:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-04 07:54:17 +0000 |
commit | 24fc05cf576c80976773d09b341b9c9b2274a492 (patch) | |
tree | 89829bec0144ac0da7c0ae340cd8435427efb01e /scripts/custom_code.py | |
parent | a613fbc05e037622e1f20667d428be3f72894f16 (diff) | |
parent | 352b33106a64a8c34d1f5d79fcb377a73b02e39c (diff) | |
download | stable-diffusion-webui-gfx803-24fc05cf576c80976773d09b341b9c9b2274a492.tar.gz stable-diffusion-webui-gfx803-24fc05cf576c80976773d09b341b9c9b2274a492.tar.bz2 stable-diffusion-webui-gfx803-24fc05cf576c80976773d09b341b9c9b2274a492.zip |
Merge branch 'master' into fix-ckpt-cache
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]
|