(self, event)
| 760 | _WRAPPED = (QtGui.QDoubleSpinBox, ) |
| 761 | |
| 762 | def keyPressEvent(self, event): |
| 763 | super().keyPressEvent(event) |
| 764 | if self._units and event.text() == 'u': |
| 765 | self.change_units(request_new_units(self.value())) |
| 766 | |
| 767 | def bind_feat(self, feat): |
| 768 | super().bind_feat(feat) |
nothing calls this directly
no test coverage detected