diff --git a/plugins/ScreenCapturePlacement/main.py b/plugins/ScreenCapturePlacement/main.py index e99e890d1..d7b9a1693 100644 --- a/plugins/ScreenCapturePlacement/main.py +++ b/plugins/ScreenCapturePlacement/main.py @@ -27,9 +27,9 @@ import screeninfo global detectionmethod -if "NavigationDetectionV2" in settings.GetSettings("Plugins", "Enabled"): +if "NavigationDetectionV2" in settings.GetSettings("Plugins", "Enabled", value=[]): detectionmethod = "nav" -elif "UFLDLaneDetection" in settings.GetSettings("Plugins", "Enabled"): +elif "UFLDLaneDetection" in settings.GetSettings("Plugins", "Enabled", value=[]): detectionmethod = "ufld" else: detectionmethod = "lstr"