From 0eaf14373f61c99696b786d0bc74771743e8a257 Mon Sep 17 00:00:00 2001 From: Roy-043 <70520633+Roy-043@users.noreply.github.com> Date: Tue, 10 Feb 2026 16:41:05 +0100 Subject: [PATCH] BIM: fix case of some titles (#27474) --- src/Mod/BIM/ArchWindow.py | 2 +- src/Mod/BIM/OfflineRenderingUtils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/BIM/ArchWindow.py b/src/Mod/BIM/ArchWindow.py index e856bd6410..b0119cee1e 100644 --- a/src/Mod/BIM/ArchWindow.py +++ b/src/Mod/BIM/ArchWindow.py @@ -1629,7 +1629,7 @@ class _ArchWindowTaskPanel: def retranslateUi(self, TaskPanel): - TaskPanel.setWindowTitle(QtGui.QApplication.translate("Arch", "Window elements", None)) + TaskPanel.setWindowTitle(QtGui.QApplication.translate("Arch", "Window Elements", None)) self.holeLabel.setText(QtGui.QApplication.translate("Arch", "Hole wire", None)) self.holeNumber.setToolTip( QtGui.QApplication.translate( diff --git a/src/Mod/BIM/OfflineRenderingUtils.py b/src/Mod/BIM/OfflineRenderingUtils.py index bda1f588e8..9f90b5db28 100755 --- a/src/Mod/BIM/OfflineRenderingUtils.py +++ b/src/Mod/BIM/OfflineRenderingUtils.py @@ -509,7 +509,7 @@ def viewer(scene=None, background=(1.0, 1.0, 1.0), lightdir=None): # Put our scene into viewer, change the title win.setSceneGraph(scene) - win.setWindowTitle("Coin viewer") + win.setWindowTitle("Coin Viewer") # IMPORTANT!!!!! Windows are hidden by default. win.show()