From 1e8a137fd7689fbc153da8cc198ea8d5e66d1062 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 2 May 2023 22:17:47 +1000 Subject: [PATCH] Minor UI cleanup. Remove align buttons from architectural tool panel. --- src/blenderbim/blenderbim/bim/module/model/ui.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/model/ui.py b/src/blenderbim/blenderbim/bim/module/model/ui.py index dbae69fcdd..d3b1515e82 100644 --- a/src/blenderbim/blenderbim/bim/module/model/ui.py +++ b/src/blenderbim/blenderbim/bim/module/model/ui.py @@ -131,10 +131,6 @@ class BIM_PT_authoring(Panel): bl_category = "BlenderBIM" def draw(self, context): - row = self.layout.row(align=True) - row.operator("bim.align_wall", icon="ANCHOR_TOP", text="Ext.").align_type = "EXTERIOR" - row.operator("bim.align_wall", icon="ANCHOR_CENTER", text="C/L").align_type = "CENTERLINE" - row.operator("bim.align_wall", icon="ANCHOR_BOTTOM", text="Int.").align_type = "INTERIOR" row = self.layout.row(align=True) row.operator("bim.generate_space") row = self.layout.row(align=True)