(self, right)
| 129 | self.master.update() |
| 130 | |
| 131 | def show_right(self, right): |
| 132 | if not 0 <= right < self.size: |
| 133 | self.hide_right() |
| 134 | return |
| 135 | x1, y1, x2, y2 = self.items[right].position() |
| 136 | self.canvas.coords(self.right, (x2 + 2, 0, x2 + 2, 9999)) |
| 137 | self.master.update() |
| 138 | |
| 139 | def hide_left_right_pivot(self): |
| 140 | self.hide_left() |
no test coverage detected