| 13 | // ── Section header label ── |
| 14 | |
| 15 | static QLabel* makeSectionLabel(const QString& text) { |
| 16 | auto* lbl = new QLabel(text); |
| 17 | lbl->setStyleSheet(QStringLiteral( |
| 18 | "font-weight: bold; font-size: 11px; color: #888;" |
| 19 | "padding: 6px 0 2px 0; border-bottom: 1px solid #444;")); |
| 20 | return lbl; |
| 21 | } |
| 22 | |
| 23 | // ── Constructor ── |
| 24 |