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:
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 44a716487ce..0c3bfe2caf1 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -5007,7 +5007,7 @@ class VIEW3D_PT_shading_options(Panel):
if shading.type != 'WIREFRAME':
col.prop(shading, "show_backface_culling")
- row = col.row()
+ row = col.row(align=True)
if shading.type == 'WIREFRAME':
row.prop(shading, "show_xray_wireframe", text="")
@@ -5022,7 +5022,7 @@ class VIEW3D_PT_shading_options(Panel):
#X-ray mode is off when alpha is 1.0
xray_active = shading.show_xray and shading.xray_alpha != 1
- row = col.row()
+ row = col.row(align=True)
row.prop(shading, "show_shadows", text="")
row.active = not xray_active
sub = row.row(align=True)
@@ -5265,7 +5265,7 @@ class VIEW3D_PT_overlay_geometry(Panel):
col = layout.column()
col.active = display_all
- row = col.row()
+ row = col.row(align=True)
if not is_wireframes:
row.prop(overlay, "show_wireframes", text="")
sub = row.row()