pcbnew: editing outlines now works in flipped view mode

Fixes: lp:1731978
* https://bugs.launchpad.net/kicad/+bug/1731978
This commit is contained in:
Tomasz Włostowski 2017-11-16 01:05:11 +01:00
parent b76a6210c5
commit 41f9c19b7d
1 changed files with 1 additions and 1 deletions

View File

@ -453,7 +453,7 @@ double VIEW::ToWorld( double aSize ) const
{ {
const MATRIX3x3D& matrix = m_gal->GetScreenWorldMatrix(); const MATRIX3x3D& matrix = m_gal->GetScreenWorldMatrix();
return matrix.GetScale().x * aSize; return fabs( matrix.GetScale().x * aSize );
} }