When the widget is changed by the user, update the driver with the new value.
(self, value, old_value=MISSING, other=MISSING)
| 180 | |
| 181 | #@Slot() |
| 182 | def on_widget_value_changed(self, value, old_value=MISSING, other=MISSING): |
| 183 | """When the widget is changed by the user, update the driver with |
| 184 | the new value. |
| 185 | """ |
| 186 | if self._update_on_change: |
| 187 | self.value_to_feat() |
| 188 | |
| 189 | def on_feat_value_changed(self, value, old_value=MISSING, other=MISSING): |
| 190 | """When the driver value is changed, update the widget if necessary. |
nothing calls this directly
no test coverage detected