| 479 | } |
| 480 | |
| 481 | void |
| 482 | KnobGuiChoice::reflectModificationsState() |
| 483 | { |
| 484 | KnobChoicePtr knob = _knob.lock(); |
| 485 | if (!knob) { |
| 486 | return; |
| 487 | } |
| 488 | bool hasModif = knob->hasModifications(); |
| 489 | |
| 490 | _comboBox->setAltered(!hasModif); |
| 491 | } |
| 492 | |
| 493 | NATRON_NAMESPACE_EXIT |
| 494 |
nothing calls this directly
no test coverage detected