1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

Merge remote-tracking branch 'upstream/3.4' into merge-3.4

This commit is contained in:
Alexander Alekhin
2020-12-20 18:40:22 +00:00
25 changed files with 73 additions and 40 deletions
+1 -1
View File
@@ -822,7 +822,7 @@ class JSWrapperGenerator(object):
# Generate bindings for properties
for property in sorted(class_info.props):
for property in class_info.props:
_class_property = class_property_enum_template if property.tp in type_dict else class_property_template
class_bindings.append(_class_property.substitute(js_name=property.name, cpp_name='::'.join(
[class_info.cname, property.name])))