| 1613 | } |
| 1614 | |
| 1615 | void FlexControlDialog::setActiveAuxButton(int button) |
| 1616 | { |
| 1617 | if (button >= 1 && button <= m_auxCombos.size()) { |
| 1618 | const int index = button - 1; |
| 1619 | if (auxActionControlsWheel(index)) { |
| 1620 | m_activeAux = index; |
| 1621 | } else { |
| 1622 | m_activeAux = -1; |
| 1623 | } |
| 1624 | updateAuxIndicators(); |
| 1625 | updateModeReadout(); |
| 1626 | return; |
| 1627 | } |
| 1628 | clearAuxSelection(); |
| 1629 | } |
| 1630 | |
| 1631 | bool FlexControlDialog::externalSpinEnabled() const |
| 1632 | { |
no test coverage detected