Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMerfy committed Dec 26, 2017
1 parent 5527d7e commit 25847d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Grapher/src/graph/plotter/Plotter.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private static void handleMapping(LineGraph graph){

if(yStart > 0)
yStart = 0;
if(yEnd < 10) {
if(yEnd > 10) {
int tens = 10;
for (int i = 0; i < String.valueOf(yEnd).length() - 2; i++)
tens *= 10;
Expand Down

0 comments on commit 25847d0

Please sign in to comment.