We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95e0f7b commit 49317a4Copy full SHA for 49317a4
src/silx/gui/plot/backends/BackendMatplotlib.py
@@ -1351,8 +1351,8 @@ def isKeepDataAspectRatio(self):
1351
def setKeepDataAspectRatio(self, flag):
1352
self.ax.set_aspect(1.0 if flag else "auto")
1353
self.ax2.set_aspect(1.0 if flag else "auto")
1354
- # self.ax.set_autoscaley_on(flag)
1355
- # self.ax2.set_autoscaley_on(flag)
+ self.ax.set_autoscaley_on(flag)
+ self.ax2.set_autoscaley_on(flag)
1356
1357
def setGraphGrid(self, which):
1358
self.ax.grid(False, which="both") # Disable all grid first
0 commit comments