(self, p)
| 146 | self.triggerAction(QAbstractSlider.SliderMove, main) |
| 147 | |
| 148 | def pick(self, p): |
| 149 | if self.orientation() == QtCore.Qt.Horizontal: |
| 150 | return p.x() |
| 151 | else: |
| 152 | return p.y() |
| 153 | |
| 154 | def triggerAction(self, action, main): |
| 155 | value = 0 |
no outgoing calls
no test coverage detected