mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Pcbnew: fix mistaken angle int cast in arc properties
This commit is contained in:
parent
6eb68aaf6e
commit
2b69e118e0
@ -493,7 +493,7 @@ public:
|
||||
{
|
||||
const VECTOR2I center{ GetIntValue( CSA_CENTER_X ), GetIntValue( CSA_CENTER_Y ) };
|
||||
const VECTOR2I start{ GetIntValue( CSA_START_X ), GetIntValue( CSA_START_Y ) };
|
||||
const EDA_ANGLE angle( GetIntValue( CSA_ANGLE ), DEGREES_T );
|
||||
const EDA_ANGLE angle{ GetAngleValue( CSA_ANGLE ) };
|
||||
|
||||
GetShape().SetCenter( center );
|
||||
GetShape().SetStart( start );
|
||||
|
Loading…
x
Reference in New Issue
Block a user