Put dialog away for later use.
(self, event=None)
| 66 | self.top.grab_set() |
| 67 | |
| 68 | def close(self, event=None): |
| 69 | "Put dialog away for later use." |
| 70 | if self.top: |
| 71 | self.top.grab_release() |
| 72 | self.top.transient('') |
| 73 | self.top.withdraw() |
| 74 | |
| 75 | def create_widgets(self): |
| 76 | '''Create basic 3 row x 3 col search (find) dialog. |
nothing calls this directly
no test coverage detected