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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-09-10 16:41:36 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-09-10 16:43:30 +0300
commit58622eb3a6b40d4966a19df30d126b88503a9e48 (patch)
treee5f24222d6449de683b57f8ea038511d3140089f /release/scripts/startup/bl_ui/space_image.py
parent0ee212682e1e7089501ca2f1c5d1f0f6351b01a6 (diff)
Image/UV Editor: Remove show other option
This is no longer useful now that we have multi-object editing support.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_image.py')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 6c295db8bfa..552d4802dd1 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -89,7 +89,6 @@ class IMAGE_MT_view(Menu):
if show_uvedit:
layout.prop(toolsettings, "show_uv_local_view")
- layout.prop(uv, "show_other_objects")
layout.prop(uv, "show_metadata")
if paint.brush and (context.image_paint_object or sima.mode == 'PAINT'):
@@ -783,15 +782,6 @@ class IMAGE_PT_view_display_uv_edit_overlays_advanced(Panel):
uvedit = sima.uv_editor
col = layout.column()
- col.prop(uvedit, "show_other_objects", text="Other Objects")
-
- sub = col.column()
- sub.active = uvedit.show_other_objects
- sub.prop(uvedit, "other_uv_filter", text="Filter")
-
- col.separator()
-
- col = layout.column()
col.prop(uvedit, "show_stretch", text="Stretch")
sub = col.column()