Update the widget value with the current Feat value of the driver.
(self)
| 147 | super().setReadOnly(value) |
| 148 | |
| 149 | def value_from_feat(self): |
| 150 | """Update the widget value with the current Feat value of the driver. |
| 151 | """ |
| 152 | if self._feat is None or self._lantz_target is None: |
| 153 | return |
| 154 | |
| 155 | self._feat.get(self._lantz_target, key=self._feat_key) |
| 156 | |
| 157 | def value_to_feat(self): |
| 158 | """Update the Feat value of the driver with the widget value. |
no test coverage detected