Don't set the dirty flag when saving

This commit is contained in:
Seth Hillbrand 2023-11-27 11:56:49 -08:00
parent f64349b292
commit 5e9b56b431
1 changed files with 3 additions and 0 deletions

View File

@ -1313,6 +1313,7 @@ void PCB_EDIT_FRAME::GenIPC2581File( wxCommandEvent& event )
catch(const std::exception& e)
{
wxLogError( "Exception in IPC2581 generation: %s", e.what() );
GetScreen()->SetContentModified( false );
return;
}
@ -1352,4 +1353,6 @@ void PCB_EDIT_FRAME::GenIPC2581File( wxCommandEvent& event )
SetMsgPanel( upperTxt, lowerTxt );
}
GetScreen()->SetContentModified( false );
}