Place buttons in vertical command frame gridded on right.
(self)
| 177 | return b |
| 178 | |
| 179 | def create_command_buttons(self): |
| 180 | "Place buttons in vertical command frame gridded on right." |
| 181 | f = self.buttonframe = Frame(self.frame) |
| 182 | f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2) |
| 183 | |
| 184 | b = self.make_button("Close", self.close) |
| 185 | b.lower() |
| 186 | |
| 187 | |
| 188 | class _searchbase(SearchDialogBase): # htest # |
no test coverage detected