diff --git a/GoB.py b/GoB.py index 7319d6f..08d3aeb 100644 --- a/GoB.py +++ b/GoB.py @@ -1803,6 +1803,9 @@ def export_poll(cls, context): if context.active_object: obj = context.active_object export = check_export_candidates(obj) + else: + for obj in context.selected_objects: + export = check_export_candidates(obj) #check for faces in multiple objects, only if any face in object is found exporting should be allowed else: diff --git a/__init__.py b/__init__.py index 2dc9ad0..3b032ce 100644 --- a/__init__.py +++ b/__init__.py @@ -36,7 +36,7 @@ "name": "GoB", "description": "An unofficial GOZ-like addon for Blender", "author": "ODe, JoseConseco, Daniel Grauer", - "version": (3, 5, 98), + "version": (3, 5, 99), "blender": (2, 93, 0), "location": "In the info header", "doc_url": "https://github.com/JoseConseco/GoB/wiki",