When the driver value is changed, update the widget if necessary.
(self, value, old_value=MISSING, other=MISSING)
| 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. |
| 191 | """ |
| 192 | if self.value() != value: |
| 193 | self.setValue(value) |
| 194 | |
| 195 | @property |
| 196 | def feat_key(self): |