Clip min, max values to the bounds.
(self, vals)
| 894 | return self._stepped_value(max) |
| 895 | |
| 896 | def _value_in_bounds(self, vals): |
| 897 | """Clip min, max values to the bounds.""" |
| 898 | return (self._min_in_bounds(vals[0]), self._max_in_bounds(vals[1])) |
| 899 | |
| 900 | def _update_val_from_pos(self, pos): |
| 901 | """Update the slider value based on a given position.""" |
no test coverage detected