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>2019-09-13 15:06:41 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-13 15:06:41 +0300
commitfcf94c772f1fdd3c531adfcaee6762f0eb4bcee0 (patch)
tree020af3719af49fdcfbcd88bbc7ad00c8795bd978 /release
parent27bbe7cbd9b25d2f02a88ae089396e4980f6a819 (diff)
UI: don't show decorators in Remesh panel
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_mesh.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_mesh.py b/release/scripts/startup/bl_ui/properties_data_mesh.py
index 4994fac0b7d..9be6c8f3ba8 100644
--- a/release/scripts/startup/bl_ui/properties_data_mesh.py
+++ b/release/scripts/startup/bl_ui/properties_data_mesh.py
@@ -468,6 +468,7 @@ class DATA_PT_remesh(MeshButtonsPanel, Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
+ layout.use_property_decorate = False
row = layout.row()
mesh = context.mesh
@@ -489,6 +490,7 @@ class DATA_PT_customdata(MeshButtonsPanel, Panel):
def draw(self, context):
layout = self.layout
layout.use_property_split = True
+ layout.use_property_decorate = False
obj = context.object
me = context.mesh