(self, event)
| 297 | self.chromeWindow.GetBrowser().SetFocus(True) |
| 298 | |
| 299 | def OnRight(self, event): |
| 300 | if self.chromeWindow.GetBrowser().CanGoForward(): |
| 301 | self.chromeWindow.GetBrowser().GoForward() |
| 302 | self.UpdateButtonsState() |
| 303 | self.chromeWindow.GetBrowser().SetFocus(True) |
| 304 | |
| 305 | def OnReload(self, event): |
| 306 | self.chromeWindow.GetBrowser().Reload() |
nothing calls this directly
no test coverage detected