| 213 | } |
| 214 | |
| 215 | Qt::Key KeyboardMapWidget::selectedKey() const |
| 216 | { |
| 217 | if (m_selectedIdx >= 0 && m_selectedIdx < m_keys.size()) |
| 218 | return m_keys[m_selectedIdx].qtKey; |
| 219 | return Qt::Key_unknown; |
| 220 | } |
| 221 | |
| 222 | // ─── Painting ─────────────────────────────────────────────────────────────── |
| 223 |
no test coverage detected