From d1a0bfcc390dab6f56417f30dfa55ecaf8baf5a9 Mon Sep 17 00:00:00 2001 From: "tomasz.wlostowski@cern.ch" Date: Fri, 2 Aug 2013 19:18:58 +0200 Subject: [PATCH] pcbnew: fixed missing Select Tool icon warning --- pcbnew/menubar_pcbframe.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcbnew/menubar_pcbframe.cpp b/pcbnew/menubar_pcbframe.cpp index 424eb13dc9..5eb3b28a96 100644 --- a/pcbnew/menubar_pcbframe.cpp +++ b/pcbnew/menubar_pcbframe.cpp @@ -302,7 +302,8 @@ void PCB_EDIT_FRAME::ReCreateMenuBar() AddMenuItem( editMenu, ID_SELECTION_TOOL, _( "Select Tool" ), - _( "Interactive selection and drag&drop tool." ) ); + _( "Interactive selection and drag&drop tool." ), + KiBitmap( tools_xpm ) ); /** Create View menu **/ wxMenu* viewMenu = new wxMenu;