(self, event)
| 819 | # pyfalog.critical(e) |
| 820 | |
| 821 | def OnShow(self, event): |
| 822 | if self and not self.IsShown(): |
| 823 | try: |
| 824 | self.MakeSnapshot() |
| 825 | except (KeyboardInterrupt, SystemExit): |
| 826 | raise |
| 827 | except Exception as e: |
| 828 | pyfalog.critical("Failed to make snapshot") |
| 829 | pyfalog.critical(e) |
| 830 | event.Skip() |
| 831 | |
| 832 | def Snapshot(self): |
| 833 | return self.FVsnapshot |
nothing calls this directly
no test coverage detected