diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-06 12:08:48 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-06 12:08:59 +0300 |
commit | 5f24b7bcf4a074fbdec757617fcd1bc82e76551b (patch) | |
tree | b4f1ccfb1718d667de448249882f385d4b9aafae /webui.py | |
parent | 6e7057b31b9762a9720282c7da486e4f264dee28 (diff) |
option to let users select which samplers they want to hide
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ import os import threading
import time
import importlib
-from modules import devices
+from modules import devices, sd_samplers
from modules.paths import script_path
import signal
import threading
@@ -109,6 +109,8 @@ def webui(): time.sleep(0.5)
break
+ sd_samplers.set_samplers()
+
print('Reloading Custom Scripts')
modules.scripts.reload_scripts(os.path.join(script_path, "scripts"))
print('Reloading modules: modules.ui')
|