(self, val)
| 1201 | toolfig.subplotpars.validate = validate |
| 1202 | |
| 1203 | def funcleft(self, val): |
| 1204 | self.targetfig.subplots_adjust(left=val) |
| 1205 | if self.drawon: |
| 1206 | self.targetfig.canvas.draw() |
| 1207 | |
| 1208 | def funcright(self, val): |
| 1209 | self.targetfig.subplots_adjust(right=val) |
nothing calls this directly
no test coverage detected