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:
authorCampbell Barton <ideasman42@gmail.com>2020-04-16 11:10:21 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-04-16 11:26:07 +0300
commit90d3fe1e4dd5a4be86ef738dfaca08ae8c9ca3f7 (patch)
tree538bcba599a40eab5d8b9efe7c06e721fcf115be /release
parentec263547b53477bf7e0b775c913353d897ccae1c (diff)
UV: support changing the opacity of the UV overlay
Add this option as it's useful to adjust how much UV's cover the image when UV mapping. D5348 by @EitanSomething with edits
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index 4506307067e..05924600db7 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -955,6 +955,7 @@ class IMAGE_PT_view_display_uv_edit_overlays(Panel):
col = layout.column()
col.prop(uvedit, "show_smooth_edges", text="Smooth")
col.prop(uvedit, "show_modified_edges", text="Modified")
+ col.prop(uvedit, "uv_opacity")
class IMAGE_PT_view_display_uv_edit_overlays_stretch(Panel):