summaryrefslogtreecommitdiff
path: root/wx+/graph.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/graph.cpp')
-rw-r--r--wx+/graph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/graph.cpp b/wx+/graph.cpp
index bf30843d..ce65d299 100644
--- a/wx+/graph.cpp
+++ b/wx+/graph.cpp
@@ -37,7 +37,7 @@ double zen::nextNiceNumber(double blockSize) //round to next number which is a c
//have a look at leading two digits: "nice" numbers start with 1, 2, 2.5 and 5
const double steps[] = {1, 2, 2.5, 5, 10};
- return e * numeric::nearMatch(a, std::begin(steps), std::end(steps));
+ return e * numeric::roundToGrid(a, std::begin(steps), std::end(steps));
}
bgstack15