From 870bb41ff740c813ae1caad490431f3f9aba0b04 Mon Sep 17 00:00:00 2001 From: Dylan Jeannin Date: Tue, 21 Apr 2026 16:02:37 +0200 Subject: [PATCH] =?UTF-8?q?garde=20le=20zoom=20sur=20un=20graph=20apr?= =?UTF-8?q?=C3=A8s=20rafraichissement=20des=20donn=C3=A9es?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/View/BoundaryCondition/Edit/Plot.py | 2 +- src/View/BoundaryConditionsAdisTS/Edit/Plot.py | 2 +- src/View/Frictions/PlotRKZ.py | 2 +- src/View/Frictions/PlotStricklers.py | 2 +- src/View/Geometry/PlotAC.py | 2 +- src/View/HydraulicStructures/PlotAC.py | 2 +- src/View/HydraulicStructures/PlotRKC.py | 2 +- src/View/InitialConditions/PlotDRK.py | 2 +- src/View/InitialConditions/PlotDischarge.py | 2 +- src/View/LateralContribution/Edit/Plot.py | 2 +- src/View/LateralContributionsAdisTS/Edit/Plot.py | 2 +- src/View/PlotXY.py | 2 +- src/View/Reservoir/Edit/Plot.py | 2 +- src/View/Results/PlotAC.py | 2 +- src/View/Results/PlotRKC.py | 2 +- src/View/SedimentLayers/Edit/Plot.py | 2 +- src/View/SedimentLayers/Reach/Plot.py | 2 +- src/View/SedimentLayers/Reach/Profile/Plot.py | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/View/BoundaryCondition/Edit/Plot.py b/src/View/BoundaryCondition/Edit/Plot.py index ca0f753d..31b25f9b 100644 --- a/src/View/BoundaryCondition/Edit/Plot.py +++ b/src/View/BoundaryCondition/Edit/Plot.py @@ -54,7 +54,7 @@ class Plot(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False def custom_ticks(self): if self.data.header[0] != "time": diff --git a/src/View/BoundaryConditionsAdisTS/Edit/Plot.py b/src/View/BoundaryConditionsAdisTS/Edit/Plot.py index 174e7018..b320be27 100644 --- a/src/View/BoundaryConditionsAdisTS/Edit/Plot.py +++ b/src/View/BoundaryConditionsAdisTS/Edit/Plot.py @@ -55,7 +55,7 @@ class Plot(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False def custom_ticks(self): if self.data.header[0] != "time": diff --git a/src/View/Frictions/PlotRKZ.py b/src/View/Frictions/PlotRKZ.py index 0614a052..9e787cbc 100644 --- a/src/View/Frictions/PlotRKZ.py +++ b/src/View/Frictions/PlotRKZ.py @@ -43,7 +43,7 @@ class PlotRKZ(PlotRKC): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False self.parent = parent def onpick(self, event): diff --git a/src/View/Frictions/PlotStricklers.py b/src/View/Frictions/PlotStricklers.py index 7bdc3cd3..9abef064 100644 --- a/src/View/Frictions/PlotStricklers.py +++ b/src/View/Frictions/PlotStricklers.py @@ -50,7 +50,7 @@ class PlotStricklers(PamhyrPlot): self._auto_relim = False self._auto_relim_update = False - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self, highlight=None): diff --git a/src/View/Geometry/PlotAC.py b/src/View/Geometry/PlotAC.py index cd1e3f76..1b846c5b 100644 --- a/src/View/Geometry/PlotAC.py +++ b/src/View/Geometry/PlotAC.py @@ -38,7 +38,7 @@ class PlotAC(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False self.label_x = self._trad["transverse_abscissa"] self.label_y = self._trad["unit_elevation"] diff --git a/src/View/HydraulicStructures/PlotAC.py b/src/View/HydraulicStructures/PlotAC.py index d8bfdb5b..7a51f66b 100644 --- a/src/View/HydraulicStructures/PlotAC.py +++ b/src/View/HydraulicStructures/PlotAC.py @@ -42,7 +42,7 @@ class PlotAC(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @property def river(self): diff --git a/src/View/HydraulicStructures/PlotRKC.py b/src/View/HydraulicStructures/PlotRKC.py index 8ccdf148..d7ee4faf 100644 --- a/src/View/HydraulicStructures/PlotRKC.py +++ b/src/View/HydraulicStructures/PlotRKC.py @@ -50,7 +50,7 @@ class PlotRKC(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False self.parent = parent self.anotate_lst = [] diff --git a/src/View/InitialConditions/PlotDRK.py b/src/View/InitialConditions/PlotDRK.py index 6b4e81ad..76125391 100644 --- a/src/View/InitialConditions/PlotDRK.py +++ b/src/View/InitialConditions/PlotDRK.py @@ -47,7 +47,7 @@ class PlotDRK(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self, highlight=None): diff --git a/src/View/InitialConditions/PlotDischarge.py b/src/View/InitialConditions/PlotDischarge.py index 82adb880..5dad6092 100644 --- a/src/View/InitialConditions/PlotDischarge.py +++ b/src/View/InitialConditions/PlotDischarge.py @@ -37,7 +37,7 @@ class PlotDischarge(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self): diff --git a/src/View/LateralContribution/Edit/Plot.py b/src/View/LateralContribution/Edit/Plot.py index ca0f753d..31b25f9b 100644 --- a/src/View/LateralContribution/Edit/Plot.py +++ b/src/View/LateralContribution/Edit/Plot.py @@ -54,7 +54,7 @@ class Plot(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False def custom_ticks(self): if self.data.header[0] != "time": diff --git a/src/View/LateralContributionsAdisTS/Edit/Plot.py b/src/View/LateralContributionsAdisTS/Edit/Plot.py index ca0f753d..31b25f9b 100644 --- a/src/View/LateralContributionsAdisTS/Edit/Plot.py +++ b/src/View/LateralContributionsAdisTS/Edit/Plot.py @@ -54,7 +54,7 @@ class Plot(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False def custom_ticks(self): if self.data.header[0] != "time": diff --git a/src/View/PlotXY.py b/src/View/PlotXY.py index e51933ef..b498f3d4 100644 --- a/src/View/PlotXY.py +++ b/src/View/PlotXY.py @@ -68,7 +68,7 @@ class PlotXY(PamhyrPlot): self._isometric_axis = True self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self): diff --git a/src/View/Reservoir/Edit/Plot.py b/src/View/Reservoir/Edit/Plot.py index afb44ea2..9709c668 100644 --- a/src/View/Reservoir/Edit/Plot.py +++ b/src/View/Reservoir/Edit/Plot.py @@ -55,7 +55,7 @@ class Plot(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self): diff --git a/src/View/Results/PlotAC.py b/src/View/Results/PlotAC.py index bb188472..b2324a9b 100644 --- a/src/View/Results/PlotAC.py +++ b/src/View/Results/PlotAC.py @@ -56,7 +56,7 @@ class PlotAC(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @property def results(self): diff --git a/src/View/Results/PlotRKC.py b/src/View/Results/PlotRKC.py index 065b42ca..2c09035c 100644 --- a/src/View/Results/PlotRKC.py +++ b/src/View/Results/PlotRKC.py @@ -59,7 +59,7 @@ class PlotRKC(PamhyrPlot): self._isometric_axis = False self._auto_relim_update = True - self._autoscale_update = True + self._autoscale_update = False @property def results(self): diff --git a/src/View/SedimentLayers/Edit/Plot.py b/src/View/SedimentLayers/Edit/Plot.py index 73a55b85..a9344333 100644 --- a/src/View/SedimentLayers/Edit/Plot.py +++ b/src/View/SedimentLayers/Edit/Plot.py @@ -49,7 +49,7 @@ class Plot(PamhyrPlot): self._auto_relim = False self._auto_relim_update = False - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self): diff --git a/src/View/SedimentLayers/Reach/Plot.py b/src/View/SedimentLayers/Reach/Plot.py index 30adb2b7..0ab7aff4 100644 --- a/src/View/SedimentLayers/Reach/Plot.py +++ b/src/View/SedimentLayers/Reach/Plot.py @@ -53,7 +53,7 @@ class Plot(PamhyrPlot): self._auto_relim = False self._auto_relim_update = False - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self): diff --git a/src/View/SedimentLayers/Reach/Profile/Plot.py b/src/View/SedimentLayers/Reach/Profile/Plot.py index 42d270e0..000295fd 100644 --- a/src/View/SedimentLayers/Reach/Profile/Plot.py +++ b/src/View/SedimentLayers/Reach/Profile/Plot.py @@ -53,7 +53,7 @@ class Plot(PamhyrPlot): self._auto_relim = False self._auto_relim_update = False - self._autoscale_update = True + self._autoscale_update = False @timer def draw(self):