- tech draw draft v2

This commit is contained in:
bklronin
2026-08-16 22:01:36 +02:00
parent 1eee203ba8
commit 108ad2d5b5
4 changed files with 724 additions and 330 deletions
+3 -3
View File
@@ -290,12 +290,12 @@ class TechnicalDrawingWidget(QWidget):
for vid in ("front", "top", "right", "isometric"):
self._view_checkboxes[vid].setChecked(True)
# Match the DrawingView model defaults (hidden lines + centerlines
# on) so Generate produces the same drawing as the tab-switch
# off) so Generate produces the same drawing as the tab-switch
# auto-load in MainWindow._load_drawing_tab_source.
for cb in self._hidden_line_checks.values():
cb.setChecked(True)
cb.setChecked(False)
for cb in self._centerline_checks.values():
cb.setChecked(True)
cb.setChecked(False)
left_layout.addWidget(views_group)