(self, multiSwitch)
| 52 | # Tab spawning handler |
| 53 | class FitSpawner(gui.multiSwitch.TabSpawner): |
| 54 | def __init__(self, multiSwitch): |
| 55 | self.multiSwitch = multiSwitch |
| 56 | self.mainFrame = mainFrame = gui.mainFrame.MainFrame.getInstance() |
| 57 | mainFrame.Bind(EVT_FIT_SELECTED, self.fitSelected) |
| 58 | self.multiSwitch.tabs_container.handleDrag = self.handleDrag |
| 59 | |
| 60 | def fitSelected(self, event): |
| 61 | count = -1 |
no test coverage detected