(self)
| 767 | pyfalog.debug("ContextMenu.getMenu returned false do not attempt PopupMenu") |
| 768 | |
| 769 | def determineEnabled(self): |
| 770 | char = self.Parent.Parent.entityEditor.getActiveEntity() |
| 771 | |
| 772 | if char.name in ("All 0", "All 5"): |
| 773 | self.Enable(False) |
| 774 | else: |
| 775 | self.Enable() |
| 776 | |
| 777 | |
| 778 | class APIView(wx.Panel): |
no test coverage detected