OnPixelInUI is meant to be a scaling factor, not a vector.
Fixes https://gitlab.com/kicad/code/kicad/issues/4669
This commit is contained in:
parent
e86fc64e7d
commit
93e3268030
|
@ -465,7 +465,7 @@ public:
|
|||
m_IgnoreTracks = false;
|
||||
m_IgnoreZoneFills = true;
|
||||
|
||||
m_OnePixelInIU = aView->ToWorld( one, false ).x;
|
||||
m_OnePixelInIU = abs( aView->ToWorld( one, false ).x );
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue