[Bf-blender-cvs] [77f4cb0416c] temp-group-collections: Fixup UI for 1/3

Dalai Felinto noreply at git.blender.org
Wed Nov 1 18:14:35 CET 2017


Commit: 77f4cb0416cdb92db732e90cda6d732dbc96b0d9
Author: Dalai Felinto
Date:   Fri Oct 27 11:49:52 2017 -0200
Branches: temp-group-collections
https://developer.blender.org/rB77f4cb0416cdb92db732e90cda6d732dbc96b0d9

Fixup UI for 1/3

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

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

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

diff --git a/release/scripts/startup/bl_ui/properties_object.py b/release/scripts/startup/bl_ui/properties_object.py
index a77dad506f1..6bfce89af38 100644
--- a/release/scripts/startup/bl_ui/properties_object.py
+++ b/release/scripts/startup/bl_ui/properties_object.py
@@ -221,13 +221,8 @@ class OBJECT_PT_groups(ObjectButtonsPanel, Panel):
                 row.operator("object.group_remove", text="", icon='X', emboss=False)
                 row.menu("GROUP_MT_specials", icon='DOWNARROW_HLT', text="")
 
-                split = col.box().split()
-
-                col = split.column()
-                col.prop(group, "layers", text="Dupli Visibility")
-
-                col = split.column()
-                col.prop(group, "dupli_offset", text="")
+                row = col.box().row()
+                row.prop(group, "dupli_offset", text="")
 
 
 class OBJECT_PT_display(ObjectButtonsPanel, Panel):



More information about the Bf-blender-cvs mailing list