Skip to content

Commit

Permalink
config fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyTerra committed Sep 24, 2023
1 parent 563a66e commit 7aa8135
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"install_rembg": ('true', 'false'),
"enable_embed_autocomplete": ('true', 'false'),
"enable_interface": ('true', 'false'),
"enable_Fullscreen": ('true', 'false'),
"enable_fullscreen": ('true', 'false'),
"enable_dynamic_widgets": ('true', 'false'),
"enable_dev_nodes": ('true', 'false'),
}
Expand All @@ -41,7 +41,7 @@ def update_config():
"auto_update": False,
"install_rembg": True,
"enable_interface": True,
"enable_Fullscreen": True,
"enable_fullscreen": True,
"enable_embed_autocomplete": True,
"enable_dynamic_widgets": True,
"enable_dev_nodes": False,
Expand Down Expand Up @@ -176,7 +176,7 @@ def config_value_validator(section, option, default):
if config_value_validator("ttNodes", "enable_interface", 'true') == 'true':
copy_to_web(ttNinterface_JS_file)

if config_value_validator("ttNodes", "enable_Fullscreen", 'true') == 'true':
if config_value_validator("ttNodes", "enable_fullscreen", 'true') == 'true':
copy_to_web(ttNfullscreen_JS_file)

# Enable Embed Autocomplete if True
Expand Down

0 comments on commit 7aa8135

Please sign in to comment.