Eeschema: fix sheet file extension warning.
Fixes https://gitlab.com/kicad/code/kicad/issues/4351
This commit is contained in:
parent
e253862f77
commit
26803f54f0
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue