| 1863 | } |
| 1864 | |
| 1865 | void |
| 1866 | TrackerPanel::onErrorKnobValueChanged(const TrackMarkerPtr &marker, |
| 1867 | int /*dimension*/, |
| 1868 | int reason) |
| 1869 | { |
| 1870 | if (reason == eValueChangedReasonNatronGuiEdited) { |
| 1871 | return; |
| 1872 | } |
| 1873 | TableItem* item = getItemAt(marker, COL_ERROR); |
| 1874 | if (!item) { |
| 1875 | return; |
| 1876 | } |
| 1877 | ++_imp->itemDataChangedRecursion; |
| 1878 | item->setData( Qt::DisplayRole, marker->getErrorKnob()->getValue(0) ); |
| 1879 | --_imp->itemDataChangedRecursion; |
| 1880 | } |
| 1881 | |
| 1882 | void |
| 1883 | TrackerPanel::onMotionModelKnobValueChanged(const TrackMarkerPtr &marker, |
nothing calls this directly
no test coverage detected