[Bf-blender-cvs] [fcf94c772f1] master: UI: don't show decorators in Remesh panel

Brecht Van Lommel noreply at git.blender.org
Fri Sep 13 14:06:59 CEST 2019


Commit: fcf94c772f1fdd3c531adfcaee6762f0eb4bcee0
Author: Brecht Van Lommel
Date:   Fri Sep 13 14:06:41 2019 +0200
Branches: master
https://developer.blender.org/rBfcf94c772f1fdd3c531adfcaee6762f0eb4bcee0

UI: don't show decorators in Remesh panel

===================================================================

M	release/scripts/startup/bl_ui/properties_data_mesh.py

===================================================================

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



More information about the Bf-blender-cvs mailing list