Missed flipping arguments for caller.
This commit is contained in:
Campbell Barton 2022-10-05 16:56:10 +11:00
parent b9cbb229b1
commit 1a485a3aa6
Notes: blender-bot 2023-02-14 10:11:54 +01:00
Referenced by issue #101606, Regression: Keyboard shortcuts and mouse events are not detected
1 changed files with 1 additions and 1 deletions

View File

@ -322,7 +322,7 @@ static PyObject *bpy_resource_path(PyObject *UNUSED(self), PyObject *args, PyObj
return NULL;
}
path = BKE_appdir_resource_path_id_with_version(type.value_found, (major * 100) + minor, false);
path = BKE_appdir_resource_path_id_with_version(type.value_found, false, (major * 100) + minor);
return PyC_UnicodeFromByte(path ? path : "");
}