From 3667b116824cf9c630932880afd950a422b0f2c9 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sat, 19 Jan 2019 07:54:02 +0100 Subject: [PATCH] fp editor: very minor fix: fix incorrect icon in toolbar --- pcbnew/tool_footprint_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/tool_footprint_editor.cpp b/pcbnew/tool_footprint_editor.cpp index 336c01d411..20d547bf16 100644 --- a/pcbnew/tool_footprint_editor.cpp +++ b/pcbnew/tool_footprint_editor.cpp @@ -64,7 +64,7 @@ void FOOTPRINT_EDIT_FRAME::ReCreateHToolbar() #endif m_mainToolBar->AddTool( ID_MODEDIT_SAVE, wxEmptyString, - KiScaledBitmap( IsCurrentFPFromBoard() ? open_brd_file_xpm : save_xpm, + KiScaledBitmap( IsCurrentFPFromBoard() ? save_fp_to_board_xpm : save_xpm, this ), IsCurrentFPFromBoard() ? _( "Save changes to board" ) : _( "Save changes to library" ) );