[map] allow sub-pixel line widths on retina

This commit is contained in:
Darafei Praliaskouski 2013-05-27 16:23:02 +03:00 committed by Alex Zolotarev
parent 06affcead0
commit 87b3992d4d

View file

@ -19,7 +19,7 @@ namespace
double ConvertWidth(double w, double scale)
{
return max(w, 1.0) * scale;
return max(w * scale, 1.0);
}
}