BIM: fix case of some titles (#27474)

This commit is contained in:
Roy-043
2026-02-10 16:41:05 +01:00
committed by GitHub
parent ff377e031f
commit 0eaf14373f
2 changed files with 2 additions and 2 deletions

View File

@@ -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(

View File

@@ -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()