Don't apply scale twice for text if both height and stroke are in mm.
parent
626ffeab1f
commit
5763972ed8
|
@ -1169,9 +1169,10 @@ s:
|
|||
}
|
||||
|
||||
if(disp.style.v != 0) {
|
||||
stroke.width = Style::Width(disp.style);
|
||||
if(how == DrawAs::DEFAULT) {
|
||||
stroke.color = Style::Color(disp.style);
|
||||
RgbaColor color = stroke.color;
|
||||
stroke = Style::Stroke(disp.style);
|
||||
if(how != DrawAs::DEFAULT) {
|
||||
stroke.color = color;
|
||||
}
|
||||
hcs = canvas->GetStroke(stroke);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue