Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2022-08-05 08:07:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2022-08-05 08:07:16 +0300
commit4b25801f640ee49f49c63d4de6871504236ce6b7 (patch)
treedf00e0de40c4e09aaf4714ca45b5d4acd135c50a
parentbff8295be576ae2a2cb2c989157ec9fdcaa21c0a (diff)
Fix T99496: Magic UV error in menu search
-rw-r--r--magic_uv/common.py7
-rw-r--r--magic_uv/op/copy_paste_uv_object.py9
2 files changed, 10 insertions, 6 deletions
diff --git a/magic_uv/common.py b/magic_uv/common.py
index fccce1c4..f76fcc67 100644
--- a/magic_uv/common.py
+++ b/magic_uv/common.py
@@ -1242,11 +1242,14 @@ def __is_points_in_polygon(points, subject_points):
def get_uv_editable_objects(context):
if compat.check_version(2, 80, 0) < 0:
- objs = [context.active_object]
+ objs = []
else:
objs = [o for o in bpy.data.objects
if compat.get_object_select(o) and o.type == 'MESH']
- objs.append(context.active_object)
+
+ ob = context.active_object
+ if ob is not None:
+ objs.append(ob)
objs = list(set(objs))
return objs
diff --git a/magic_uv/op/copy_paste_uv_object.py b/magic_uv/op/copy_paste_uv_object.py
index 39795b52..897891e4 100644
--- a/magic_uv/op/copy_paste_uv_object.py
+++ b/magic_uv/op/copy_paste_uv_object.py
@@ -30,15 +30,16 @@ def _is_valid_context(context):
if not common.is_valid_space(context, ['VIEW_3D']):
return False
+ # Only object mode is allowed to execute.
+ ob = context.object
+ if ob is not None and ob.mode != 'OBJECT':
+ return False
+
# Multiple objects editing mode is not supported in this feature.
objs = common.get_uv_editable_objects(context)
if len(objs) != 1:
return False
- # only object mode is allowed to execute
- if context.object.mode != 'OBJECT':
- return False
-
return True