(self, event)
| 100 | self.SetCursor(wx.Cursor(wx.CURSOR_ARROW)) |
| 101 | |
| 102 | def OnSizeUpdate(self, event): |
| 103 | self.CalcButtonsBarPos() |
| 104 | |
| 105 | self.Refresh() |
| 106 | |
| 107 | event.Skip() |
| 108 | |
| 109 | def CalcButtonsBarPos(self): |
| 110 |
nothing calls this directly
no test coverage detected