From 081b3fcf33a63b6d7af45cf65401449488f63490 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 30 Jul 2024 23:57:09 +1000 Subject: [PATCH] Remove misleading load project button in new project wizard. Previously there were subtle differences and two ways to load projects which is bad UX. --- src/blenderbim/blenderbim/bim/module/project/ui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/project/ui.py b/src/blenderbim/blenderbim/bim/module/project/ui.py index 068fc246c3..0ced23f63c 100644 --- a/src/blenderbim/blenderbim/bim/module/project/ui.py +++ b/src/blenderbim/blenderbim/bim/module/project/ui.py @@ -299,9 +299,8 @@ class BIM_PT_new_project_wizard(Panel): row.prop(props, "volume_unit", text="Volume Unit") prop_with_search(self.layout, pprops, "template_file", text="Template") - row = self.layout.row(align=True) + row = self.layout.row() row.operator("bim.create_project") - row.operator("bim.load_project").should_start_fresh_session = False class BIM_PT_project_library(Panel):