Fix argument name for getSaveGameWidget.

This commit is contained in:
Mikaël Capelle
2020-07-14 15:00:26 +02:00
parent 727a55e1a8
commit c955b4e8de
+1 -1
View File
@@ -331,7 +331,7 @@ void registerGameFeaturesPythonConverters()
bpy::arg("filepath"))
.def("getMissingAssets", bpy::pure_virtual(&SaveGameInfo::getMissingAssets), bpy::arg("filepath"))
.def("getSaveGameWidget", bpy::pure_virtual(&SaveGameInfo::getSaveGameWidget), bpy::return_value_policy<bpy::manage_new_object>(),
bpy::arg("widget"), "[optional]")
bpy::arg("parent"), "[optional]")
.def("hasScriptExtenderSave", bpy::pure_virtual(&SaveGameInfo::hasScriptExtenderSave), bpy::arg("filepath"))
;