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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-24 13:54:48 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-08-30 18:56:54 +0300
commitd2ad256326736c8a4c746163f9b27491d8a6e95a (patch)
tree988048ddf643dd6a4f9b54d6705b411d41880a7c /release/scripts/startup/bl_ui/space_view3d.py
parentaf21053087b93c015435a62cbedade03772c52c7 (diff)
UI: add dedicated icon IDs for decorators, tool settings, shaderfx, overlays.
The preset and decorator icons were updated to be monochrome and draw in the same color as text. Other icons are unchanged, having them as separate icon IDs prepares for an artist to make them.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 60f312c9d6b..e29619800ea 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -232,7 +232,7 @@ class VIEW3D_HT_header(Header):
)
row = layout.row(align=True)
- row.prop(overlay, "show_overlays", icon='WIRE', text="")
+ row.prop(overlay, "show_overlays", icon='OVERLAY', text="")
sub = row.row(align=True)
sub.active = overlay.show_overlays
sub.popover(panel="VIEW3D_PT_overlay")