diff --git a/eeschema/dialogs/dialog_schematic_setup.cpp b/eeschema/dialogs/dialog_schematic_setup.cpp index 8d1fec4532..810dbb8840 100644 --- a/eeschema/dialogs/dialog_schematic_setup.cpp +++ b/eeschema/dialogs/dialog_schematic_setup.cpp @@ -84,7 +84,10 @@ DIALOG_SCHEMATIC_SETUP::DIALOG_SCHEMATIC_SETUP( SCH_EDIT_FRAME* aFrame ) : wxBookCtrlEventHandler( DIALOG_SCHEMATIC_SETUP::OnPageChange ), NULL, this ); if( Prj().IsReadOnly() ) - m_infoBar->ShowMessage( _( "Project is missing or read-only. Changes will not be saved." ) ); + { + m_infoBar->ShowMessage( _( "Project is missing or read-only. Changes will not be saved." ), + wxICON_WARNING ); + } finishDialogSettings(); }