| 207 | } |
| 208 | |
| 209 | void |
| 210 | KnobGuiButton::updateGUI(int /*dimension*/) |
| 211 | { |
| 212 | KnobButtonPtr k = _knob.lock(); |
| 213 | |
| 214 | if ( k->getIsCheckable() ) { |
| 215 | bool checked = k->getValue(); |
| 216 | _button->setDown(checked); |
| 217 | _button->setChecked(checked); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | void |
| 222 | KnobGuiButton::setEnabled() |
nothing calls this directly
no test coverage detected