Add missing icon in menu, and fix them in other menus

This commit is contained in:
jean-pierre charras 2020-10-25 13:36:08 +01:00
parent 13b4c46063
commit 34179cd039
3 changed files with 4 additions and 3 deletions

View File

@ -167,7 +167,8 @@ TOOL_ACTION ACTIONS::paste( "common.Interactive.paste",
TOOL_ACTION ACTIONS::selectAll( "common.Interactive.selectAll",
AS_GLOBAL,
MD_CTRL + 'A', "",
_( "Select All" ), _( "Select all items on screen" ) );
_( "Select All" ), _( "Select all items on screen" ),
plus_xpm );
TOOL_ACTION ACTIONS::pasteSpecial( "common.Interactive.pasteSpecial",
AS_GLOBAL, 0, "",

View File

@ -586,7 +586,7 @@ bool PL_SELECTION_TOOL::doSelectionMenu( COLLECTOR* aCollector )
}
menu.AppendSeparator();
menu.Add( _( "Select &All\tA" ), limit + 1, net_highlight_xpm );
menu.Add( _( "Select &All\tA" ), limit + 1, plus_xpm );
if( aCollector->m_MenuTitle.Length() )
menu.SetTitle( aCollector->m_MenuTitle );

View File

@ -1672,7 +1672,7 @@ bool SELECTION_TOOL::doSelectionMenu( GENERAL_COLLECTOR* aCollector, const wxStr
}
menu.AppendSeparator();
menu.Add( _( "Select &All\tA" ), limit + 1, net_highlight_xpm );
menu.Add( _( "Select &All\tA" ), limit + 1, plus_xpm );
if( !expandSelection && aCollector->HasAdditionalItems() )
menu.Add( _( "&Expand Selection\tE" ), limit + 2, nullptr );