Commit ac583d4b609cdef77bf791694349fd53fed174b4
1 parent
1e653e6f
Exists in
master
and in
55 other branches
Remove not used option
Showing
1 changed file
with
4 additions
and
5 deletions
Show diff stats
src/InputOutput/IHMImpl/Params/PlotImpl/IHMInputOutputParamsPlotClass.php
... | ... | @@ -28,7 +28,6 @@ class IHMInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
28 | 28 | { |
29 | 29 | $this->interactiveRequestRealIndexes = array(); |
30 | 30 | |
31 | - $fullResetZoom = false; | |
32 | 31 | $forceTimeZoomReset = false; |
33 | 32 | |
34 | 33 | if (isset($input->{'action'})) |
... | ... | @@ -84,8 +83,8 @@ class IHMInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
84 | 83 | continue; |
85 | 84 | } |
86 | 85 | //Reset zoom list if needed |
87 | - if ($fullResetZoom || $forceTimeZoomReset) | |
88 | - $this->resetZoomListForTab($tab->{'id'}, $forceTimeZoomReset && !$fullResetZoom); | |
86 | + if ($forceTimeZoomReset) | |
87 | + $this->resetZoomListForTab($tab->{'id'}, $forceTimeZoomReset); | |
89 | 88 | } |
90 | 89 | else |
91 | 90 | { |
... | ... | @@ -96,8 +95,8 @@ class IHMInputOutputParamsPlotClass extends IHMInputOutputParamsAbstractClass |
96 | 95 | continue; |
97 | 96 | } |
98 | 97 | //Reset zoom list if needed |
99 | - if ($fullResetZoom || $forceTimeZoomReset) | |
100 | - $this->resetZoomListForTab($tab->{'id'}, $forceTimeZoomReset && !$fullResetZoom); | |
98 | + if ($forceTimeZoomReset) | |
99 | + $this->resetZoomListForTab($tab->{'id'}, $forceTimeZoomReset); | |
101 | 100 | } |
102 | 101 | } |
103 | 102 | ... | ... |