Add missing icon in menu, and fix them in other menus
This commit is contained in:
parent
13b4c46063
commit
34179cd039
|
@ -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, "",
|
||||
|
|
|
@ -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 );
|
||||
|
|
|
@ -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 );
|
||||
|
|
Loading…
Reference in New Issue