(self, event)
| 140 | return None |
| 141 | |
| 142 | def resizeChecker(self, event): |
| 143 | # we veto header cell resize by default till we find a way |
| 144 | # to assure a minimal size for the resized header cell |
| 145 | column = event.GetColumn() |
| 146 | wx.CallAfter(self.checkColumnSize, column) |
| 147 | event.Skip() |
| 148 | |
| 149 | def resizeSkip(self, event): |
| 150 | column = event.GetColumn() |
nothing calls this directly
no outgoing calls
no test coverage detected