Fixed 0 Transparency

The error was caused by an erroneous designation of "face_swapper_enabled" in lieu of "fp_ui."
This commit is contained in:
Makaru
2025-01-15 02:53:11 +08:00
parent 9af216e819
commit 5dd6d1fe64
2 changed files with 9 additions and 4 deletions
+2 -1
View File
@@ -27,6 +27,7 @@ from modules.utilities import (
)
from modules.video_capture import VideoCapturer
from modules.gettext import LanguageManager
from modules import globals
import platform
if platform.system() == "Windows":
@@ -183,7 +184,7 @@ def create_root(start: Callable[[], None], destroy: Callable[[], None]) -> ctk.C
modules.globals.opacity = percentage / 100.0
if percentage == 0:
modules.globals.face_swapper_enabled = False
modules.globals.fp_ui["face_enhancer"] = False
update_status("Transparency set to 0% - Face swapping disabled.")
elif percentage == 100:
modules.globals.face_swapper_enabled = True