| 4561 | // ─── Slice color table (shared via SliceColors.h) ──────────────────────────── |
| 4562 | |
| 4563 | static QColor sliceColor(int sliceId, bool active) { |
| 4564 | if (active) return SliceColorManager::instance().activeColor(sliceId); |
| 4565 | return SliceColorManager::instance().dimColor(sliceId); |
| 4566 | } |
| 4567 | |
| 4568 | // Variant that respects the SliceLetterDisplay mode (#2606): when set to |
| 4569 | // RadioIndexed, the colour follows the radio-provided per-client letter |
nothing calls this directly
no test coverage detected