diff options
| -rw-r--r-- | aerialvision/guiclasses.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/aerialvision/guiclasses.py b/aerialvision/guiclasses.py index 45fed26..04036a8 100644 --- a/aerialvision/guiclasses.py +++ b/aerialvision/guiclasses.py @@ -1365,7 +1365,8 @@ class graphManager: interpolation = 'nearest' norm = plotFormat.norm im = self.plot.imshow(y, cmap = cmap, interpolation = interpolation, aspect = 'auto', norm = norm ) - tmp = im.get_axes().get_position().get_points() + # tmp = im.get_axes().get_position().get_points() + tmp = im.get_window_extent().get_points() if (plotID in self.cbarAxes): self.figure.delaxes(self.cbarAxes[plotID]) |
