Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
600f339c
Commit
600f339c
authored
Apr 09, 2024
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Warning when Script is not found
parent
a976f4df
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
modules/scripts.py
modules/scripts.py
+11
-6
No files found.
modules/scripts.py
View file @
600f339c
...
@@ -739,11 +739,16 @@ class ScriptRunner:
...
@@ -739,11 +739,16 @@ class ScriptRunner:
def
onload_script_visibility
(
params
):
def
onload_script_visibility
(
params
):
title
=
params
.
get
(
'Script'
,
None
)
title
=
params
.
get
(
'Script'
,
None
)
if
title
:
if
title
:
try
:
title_index
=
self
.
titles
.
index
(
title
)
title_index
=
self
.
titles
.
index
(
title
)
visibility
=
title_index
==
self
.
script_load_ctr
visibility
=
title_index
==
self
.
script_load_ctr
self
.
script_load_ctr
=
(
self
.
script_load_ctr
+
1
)
%
len
(
self
.
titles
)
self
.
script_load_ctr
=
(
self
.
script_load_ctr
+
1
)
%
len
(
self
.
titles
)
return
gr
.
update
(
visible
=
visibility
)
return
gr
.
update
(
visible
=
visibility
)
else
:
except
ValueError
:
params
[
'Script'
]
=
None
massage
=
f
'Cannot find Script: "{title}"'
print
(
massage
)
gr
.
Warning
(
massage
)
return
gr
.
update
(
visible
=
False
)
return
gr
.
update
(
visible
=
False
)
self
.
infotext_fields
.
append
((
dropdown
,
lambda
x
:
gr
.
update
(
value
=
x
.
get
(
'Script'
,
'None'
))))
self
.
infotext_fields
.
append
((
dropdown
,
lambda
x
:
gr
.
update
(
value
=
x
.
get
(
'Script'
,
'None'
))))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment