Skip to content
Snippets Groups Projects
Commit bee16ce3 authored by Maxime Graulich's avatar Maxime Graulich
Browse files

iOS: fix font on iPhone

parent 5e64e1b1
No related branches found
No related tags found
No related merge requests found
...@@ -487,7 +487,7 @@ void drawContext::drawScale() ...@@ -487,7 +487,7 @@ void drawContext::drawScale()
double v = opt->getScaleValue(i, 3, opt->tmpMin, opt->tmpMax); double v = opt->getScaleValue(i, 3, opt->tmpMin, opt->tmpMax);
sprintf(label, opt->format.c_str(), v); sprintf(label, opt->format.c_str(), v);
val.setText(label); val.setText(label);
val.draw(xmin+i*width/2, ymin+ 1.5*dh, 0., _width/(_right-_left), _height/(_top-_bottom)); val.draw(xmin+i*width/2, ymin+ 1.1*dh, 0., _width/(_right-_left), _height/(_top-_bottom));
} }
nPview++; nPview++;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment