7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 14:51:41 +00:00

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

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 );
}