(self)
| 900 | return b |
| 901 | |
| 902 | def _Spacer(self): |
| 903 | # Buttons are also 18pt high. |
| 904 | s = tk.Frame(master=self, height='18p', relief=tk.RIDGE, bg='DarkGray') |
| 905 | s.pack(side=tk.LEFT, padx='3p') |
| 906 | return s |
| 907 | |
| 908 | def save_figure(self, *args): |
| 909 | filetypes = self.canvas.get_supported_filetypes_grouped() |
no outgoing calls
no test coverage detected