Eeschema: fix sheet file extension warning.

Fixes https://gitlab.com/kicad/code/kicad/issues/4351
This commit is contained in:
Wayne Stambaugh 2020-05-07 10:28:47 -04:00
parent e253862f77
commit 26803f54f0
1 changed files with 1 additions and 1 deletions

View File

@ -602,7 +602,7 @@ void DIALOG_SCH_SHEET_PROPS::OnGridCellChanging( wxGridEvent& event )
if( fn.GetExt().CmpNoCase( KiCadSchematicFileExtension ) != 0 ) if( fn.GetExt().CmpNoCase( KiCadSchematicFileExtension ) != 0 )
{ {
wxMessageBox( _( "Sheet filename must have a '.sch' extension." ) ); wxMessageBox( _( "Sheet filename must have a '.kicad_sch' extension." ) );
success = false; success = false;
} }
} }