diff --git a/javascript/state.core.js b/javascript/state.core.js index bd54717..911df98 100644 --- a/javascript/state.core.js +++ b/javascript/state.core.js @@ -9,8 +9,6 @@ state.core = (function () { 'prompt': 'prompt', 'negative_prompt': 'neg_prompt', 'sampling_steps': 'steps', - 'restore_faces': 'restore_faces', - 'tiling': 'tiling', 'hires_steps': 'hires_steps', 'hires_scale': 'hr_scale', 'hires_resize_x': 'hr_resize_x', @@ -58,7 +56,6 @@ state.core = (function () { }; const TOGGLE_BUTTONS = { - 'extra_networks': 'extra_networks', 'hires_fix': 'hr', 'refiner': 'enable', }; diff --git a/scripts/state_settings.py b/scripts/state_settings.py index d6417ec..4ce4a9e 100644 --- a/scripts/state_settings.py +++ b/scripts/state_settings.py @@ -17,7 +17,6 @@ def on_ui_settings(): "choices": [ "prompt", "negative_prompt", - "extra_networks", "styles", "sampling", "scheduler", @@ -28,8 +27,6 @@ def on_ui_settings(): "batch_size", "cfg_scale", "seed", - "restore_faces", - "tiling", "hires_fix", "hires_upscaler", "hires_steps", @@ -56,7 +53,6 @@ def on_ui_settings(): "choices": [ "prompt", "negative_prompt", - "extra_networks", "styles", "refiner", "refiner_checkpoint", @@ -73,8 +69,6 @@ def on_ui_settings(): "scheduler", "resize_mode", "sampling_steps", - "restore_faces", - "tiling", "width", "height", "batch_count",