Merge pull request #1118 from jotomo/1096
Disable slope deviation unless on dev branch, fixes #1096.
This commit is contained in:
commit
809ad97cb9
1 changed files with 1 additions and 1 deletions
|
@ -1422,7 +1422,7 @@ public class OverviewFragment extends Fragment implements View.OnClickListener,
|
|||
secondGraphData.addDeviations(fromTime, now, useDevForScale, 1d);
|
||||
if (SP.getBoolean("showratios", false))
|
||||
secondGraphData.addRatio(fromTime, now, useRatioForScale, 1d);
|
||||
if (SP.getBoolean("showdevslope", false))
|
||||
if (SP.getBoolean("showdevslope", false) && MainApp.devBranch)
|
||||
secondGraphData.addDeviationSlope(fromTime, now, useDSForScale, 1d);
|
||||
|
||||
// **** NOW line ****
|
||||
|
|
Loading…
Reference in a new issue