WM: defaults detectPlugin to true

This commit is contained in:
李通洲
2026-02-27 18:26:53 +08:00
parent ca8f54d331
commit 072b76cb12
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4487,7 +4487,7 @@
"detectPlugin": {
"description": "Set if window manager plugin should be detected on supported platforms",
"type": "boolean",
"default": false
"default": true
},
"key": {
"$ref": "#/$defs/key"
+1 -1
View File
@@ -122,7 +122,7 @@ bool ffGenerateWMJsonResult(FF_MAYBE_UNUSED FFWMOptions* options, yyjson_mut_doc
void ffInitWMOptions(FFWMOptions* options)
{
ffOptionInitModuleArg(&options->moduleArgs, "");
options->detectPlugin = false;
options->detectPlugin = true;
}
void ffDestroyWMOptions(FFWMOptions* options)