From e6808b6f2eb6fe946282e798d0201a5988ea2455 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Mon, 2 Feb 2026 19:37:52 +0100 Subject: [PATCH] BIM: titles in default task panel in title case This task panel appears when no command is active. There are 2 versions. One appears if there is a selection, the other if there is none. --- src/Mod/BIM/InitGui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/BIM/InitGui.py b/src/Mod/BIM/InitGui.py index 990d183fd2..cd6d0b778c 100644 --- a/src/Mod/BIM/InitGui.py +++ b/src/Mod/BIM/InitGui.py @@ -636,8 +636,8 @@ class BIMWorkbench(Workbench): FreeCADGui.Control.addTaskWatcher( [ - BimWatcher(self.draftingtools + self.annotationtools, "2D geometry"), - BimWatcher(self.bimtools, "3D/BIM geometry"), + BimWatcher(self.draftingtools + self.annotationtools, "2D Geometry"), + BimWatcher(self.bimtools, "3D/BIM Geometry"), BimWatcher(self.modify, "Modify", invert=True), ] )