Eeschema: fix grid select dialog internal units bug.

Fixes #3782

https://gitlab.com/kicad/code/kicad/issues/3782
This commit is contained in:
Wayne Stambaugh 2020-01-18 11:28:01 -05:00
parent a7d02a4f75
commit 462074d471
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/*
* This program source code file is part of KiCad, a free EDA CAD application.
*
* Copyright (C) 2018 KiCad Developers, see AUTHORS.txt for contributors.
* Copyright (C) 2018-2020 KiCad Developers, see AUTHORS.txt for contributors.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@ -57,7 +57,8 @@ bool DIALOG_SET_GRID::TransferDataToWindow()
for( size_t i = 0; i < gridSizes.size(); i++ )
{
m_choiceGridSize->Append( wxString::Format( wxT( "%0.1f" ), gridSizes[i].m_Size.x ) );
m_choiceGridSize->Append( wxString::Format( "%0.1f",
static_cast<float>( Iu2Mils( gridSizes[i].m_Size.x ) ) ) );
if( gridSizes[i].m_CmdId == m_frame->GetScreen()->GetGridCmdId() )
m_choiceGridSize->SetSelection( (int) i );