(self)
| 602 | self._max_value_validate(text) |
| 603 | |
| 604 | def le_max_value_editing_finished(self): |
| 605 | # We don't set validator, so this method is called each time QLineEdit |
| 606 | # is losing focus or Enter is pressed |
| 607 | val = self.le_max_value.text() if self._max_value_validate() else self._value_high |
| 608 | if self._accept_value_high(val): |
| 609 | self.emit_selection_changed() |
| 610 | |
| 611 | def sld_min_value_value_changed(self, n_steps): |
| 612 | # Invert the reading for 'min' slider |
nothing calls this directly
no test coverage detected