(self, width=0, height=0)
| 104 | self.mac_prods = [] |
| 105 | |
| 106 | def resize(self, width=0, height=0): |
| 107 | if not self.interactive: |
| 108 | return |
| 109 | width = width if width > self.min_w else self.min_w |
| 110 | height = height if height > self.min_h else self.min_h |
| 111 | self.u.resize(width, height) |
| 112 | |
| 113 | def save_settings(self): |
| 114 | # Ensure we're using the latest values |
no outgoing calls
no test coverage detected