Method
mouse_up
(self, ips, x, y, btn, **key)
Source from the content-addressed store, hash-verified
| 106 | ips.update() |
| 107 | |
| 108 | def mouse_up(self, ips, x, y, btn, **key): |
| 109 | self.curobj = None |
| 110 | if self.doing: |
| 111 | ips.mark.addline() |
| 112 | self.doing = False |
| 113 | if ips.mark!=None and len(ips.mark.body)==1: |
| 114 | self.profile(ips.mark.body, ips.img) |
| 115 | ips.update() |
| 116 | |
| 117 | def mouse_move(self, ips, x, y, btn, **key): |
| 118 | if not isinstance(ips.mark, Profile):return |
Callers
nothing calls this directly
Tested by
no test coverage detected