Eeschema: fix progress dialog title capitalization.
This commit is contained in:
parent
69560ec587
commit
00fb70088f
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
* Copyright (C) 2013 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
||||||
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
* Copyright (C) 2008 Wayne Stambaugh <stambaughw@gmail.com>
|
||||||
* Copyright (C) 2004-2017 KiCad Developers, see AUTHORS.txt for contributors.
|
* Copyright (C) 2004-2018 KiCad Developers, see AUTHORS.txt for contributors.
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -1637,7 +1637,7 @@ void LIB_EDIT_FRAME::SyncLibraries( bool aProgress )
|
||||||
{
|
{
|
||||||
if( aProgress )
|
if( aProgress )
|
||||||
{
|
{
|
||||||
wxProgressDialog progressDlg( _( "Loading symbol libraries" ),
|
wxProgressDialog progressDlg( _( "Loading Symbol Libraries" ),
|
||||||
wxEmptyString, m_libMgr->GetAdapter()->GetLibrariesCount(), this );
|
wxEmptyString, m_libMgr->GetAdapter()->GetLibrariesCount(), this );
|
||||||
|
|
||||||
m_libMgr->Sync( true, [&]( int progress, int max, const wxString& libName ) {
|
m_libMgr->Sync( true, [&]( int progress, int max, const wxString& libName ) {
|
||||||
|
|
Loading…
Reference in New Issue