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:
authorAntonioya <blendergit@gmail.com>2018-12-10 18:21:12 +0300
committerAntonioya <blendergit@gmail.com>2018-12-10 22:18:10 +0300
commit2debee96ec51b4a6e4f06bc6a5cb3846244725ae (patch)
tree003b9d1d79c17131178db9992beac62f2af99788 /release
parentb34ff014871453c26fa6f842990919a03060b4cb (diff)
GP: Replace Clamp icon
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_gpencil.py2
-rw-r--r--release/scripts/startup/bl_ui/properties_grease_pencil_common.py2
-rw-r--r--release/scripts/startup/bl_ui/space_topbar.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_gpencil.py b/release/scripts/startup/bl_ui/properties_data_gpencil.py
index 558c3c190b6..5a64389e5c6 100644
--- a/release/scripts/startup/bl_ui/properties_data_gpencil.py
+++ b/release/scripts/startup/bl_ui/properties_data_gpencil.py
@@ -143,7 +143,7 @@ class DATA_PT_gpencil_datapanel(Panel):
srow = col.row(align=True)
srow.prop(gpl, "opacity", text="Opacity", slider=True)
srow.prop(gpl, "clamp_layer", text="",
- icon='MOD_MASK' if gpl.clamp_layer else 'ONIONSKIN_OFF')
+ icon='MOD_MASK' if gpl.clamp_layer else 'LAYER_ACTIVE')
col = row.column()
diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 5a0c2bd1e43..1bedc2c4f97 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -982,7 +982,7 @@ class GPENCIL_UL_layer(UIList):
row = layout.row(align=True)
row.prop(gpl, "clamp_layer", text="",
- icon='MOD_MASK' if gpl.clamp_layer else 'ONIONSKIN_OFF',
+ icon='MOD_MASK' if gpl.clamp_layer else 'LAYER_ACTIVE',
emboss=False)
row.prop(gpl, "lock", text="", emboss=False)
diff --git a/release/scripts/startup/bl_ui/space_topbar.py b/release/scripts/startup/bl_ui/space_topbar.py
index a74683d2849..1192dbf74cd 100644
--- a/release/scripts/startup/bl_ui/space_topbar.py
+++ b/release/scripts/startup/bl_ui/space_topbar.py
@@ -528,7 +528,7 @@ class TOPBAR_PT_gpencil_layers(Panel):
srow = col.row(align=True)
srow.prop(gpl, "opacity", text="Opacity", slider=True)
srow.prop(gpl, "clamp_layer", text="",
- icon='MOD_MASK' if gpl.clamp_layer else 'ONIONSKIN_OFF')
+ icon='MOD_MASK' if gpl.clamp_layer else 'LAYER_ACTIVE')
col = row.column()