(self, event)
| 238 | |
| 239 | # Focus manipulation - otherwise scrolling doesn't work under Windows |
| 240 | def OnMouseMove(self, event): |
| 241 | event.Skip() |
| 242 | if not self.HasFocus(): |
| 243 | self._savedFocusedWindow = self.FindFocus() |
| 244 | self.SetFocus() |
| 245 | |
| 246 | def OnMouseLeave(self, event): |
| 247 | event.Skip() |
nothing calls this directly
no outgoing calls
no test coverage detected