fix: escape ampersand in 'Extract && Edit' QToolBox title

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-03 01:57:43 +02:00
co-authored by Claude Opus 4.8
parent d8b890d679
commit 283bc65588
+1 -1
View File
@@ -5279,7 +5279,7 @@ class MainWindow(QMainWindow):
g.addWidget(self._btn_extract_audio, 7, 0, 1, 4)
g.setColumnStretch(4, 1) # spare gutter column clusters label/field pairs to the left
g.setRowStretch(8, 1) # anchor content to the top
tb.addItem(extract_page, "Extract & Edit")
tb.addItem(extract_page, "Extract && Edit")
# ── Page 2: Scan / Classify (moved verbatim) ─────────────
scan_page = QWidget()