action_plugin: Remove duplicated entry in UndoList

(cherry picked from commit 429c311ec3)
This commit is contained in:
Greg Davill 2022-02-24 18:31:16 +00:00 committed by Seth Hillbrand
parent 5cc2bef954
commit 55bdef9bd2
1 changed files with 2 additions and 1 deletions

View File

@ -367,7 +367,8 @@ void PCB_EDIT_FRAME::RunActionPlugin( ACTION_PLUGIN* aActionPlugin )
delete oldBuffer;
}
commit.Push( _( "Apply action script" ) );
// Apply changes, UndoList already handled
commit.Push( _( "Apply action script" ), false );
ActivateGalCanvas();
}