Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14160


Ignore:
Timestamp:
07/21/16 16:54:23 (8 years ago)
Author:
bburlacu
Message:

#2594: Fix very small omission.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Visualization.ChartControlsExtensions/3.3/ChartUtil.cs

    r14159 r14160  
    3838      // if one of the interval ends is a multiple of 5 or 10, change the other interval end to be a multiple as well
    3939      if ((aMin.Mod(5).IsAlmost(0) || aMin.Mod(10).IsAlmost(0)) && Math.Abs(aMax) >= 5 && !(aMax.Mod(5).IsAlmost(0) || aMax.Mod(10).IsAlmost(0))) {
    40         aMax = Math.Min(aMax + 5 - aMax % 5, aMax + 10 - aMax % 10);
     40        aMax = Math.Min(aMax + 5 - aMax.Mod(5), aMax + 10 - aMax.Mod(10));
    4141      } else if ((aMax.Mod(5).IsAlmost(0) || aMax.Mod(10).IsAlmost(0)) && Math.Abs(aMin) >= 5 && !(aMin.Mod(5).IsAlmost(0) || aMin.Mod(10).IsAlmost(0))) {
    4242        aMin = Math.Max(aMin - aMin.Mod(5), aMin - aMin.Mod(10));
Note: See TracChangeset for help on using the changeset viewer.