reset the slider to the initial value if needed
(self)
| 140 | |
| 141 | |
| 142 | def reset(self): |
| 143 | """reset the slider to the initial value if needed""" |
| 144 | if (self.val != self.valinit): |
| 145 | self._set_val(self.valinit) |
| 146 | |
| 147 | |
| 148 | def _connect(self): |
no test coverage detected