The add-on tries to deselect all objects before doing anything, but fails when it founds a previously deleted object with fake user.
Details
Details
Diff Detail
Diff Detail
- Repository
- rBA Blender Add-ons
Event Timeline
Comment Actions
Could somebody take a look at this simple patch, @Jacques Lucke (JacquesLucke), @Brendon Murphy (meta-androcto)?
Comment Actions
Note the correct way to deselect all objects would be looping over all objects in the view layer with for ob in bpy.context.view_layer.objects.
Comment Actions
Right, also when iterating over the objects in a the view layer, you should not have a problem with objects that are already deleted.