(self, ips, x, y, btn, **key)
| 25 | return False |
| 26 | |
| 27 | def mouse_down(self, ips, x, y, btn, **key): |
| 28 | lim = 5.0/key['canvas'].get_scale() |
| 29 | self.moving = self.snap(x, y, lim) |
| 30 | print(self.moving) |
| 31 | |
| 32 | def mouse_up(self, ips, x, y, btn, **key): |
| 33 | if self.moving : self.plg.preview(ips, self.para) |