(self, event=None)
| 79 | dropSource.DoDragDrop() |
| 80 | |
| 81 | def itemActivated(self, event=None): |
| 82 | # Check if something is selected, if so, spawn the menu for it |
| 83 | sel = self.GetFirstSelected() |
| 84 | if sel == -1: |
| 85 | return |
| 86 | |
| 87 | if self.mainFrame.getActiveFit(): |
| 88 | wx.PostEvent(self.mainFrame, ItemSelected(itemID=self.active[sel].ID)) |
| 89 | |
| 90 | def treeSelectionChanged(self, event=None): |
| 91 | self.selectionMade('tree') |
nothing calls this directly
no test coverage detected