(self, xpos, ypos, width, height, label)
| 46 | |
| 47 | class NoEscWindow(Fl_Window): |
| 48 | def __init__(self, xpos, ypos, width, height, label): |
| 49 | Fl_Window.__init__(self, xpos, ypos, width, height, label) |
| 50 | |
| 51 | def handle(self, ev): |
| 52 | if ev == FL_SHORTCUT and Fl.event_key() == FL_Escape: |
nothing calls this directly
no outgoing calls
no test coverage detected