Pcbnew: change order of layer selector buttons, add more separators
This commit is contained in:
parent
615ad9abfc
commit
7ce0b11600
|
@ -151,18 +151,21 @@ void PCB_LAYER_WIDGET::AddRightClickMenuItems( wxMenu& menu )
|
||||||
AddMenuItem( &menu, ID_SHOW_ALL_COPPER_LAYERS,
|
AddMenuItem( &menu, ID_SHOW_ALL_COPPER_LAYERS,
|
||||||
_( "Show All Copper Layers" ),
|
_( "Show All Copper Layers" ),
|
||||||
KiBitmap( select_layer_pair_xpm ) );
|
KiBitmap( select_layer_pair_xpm ) );
|
||||||
|
AddMenuItem( &menu, ID_HIDE_ALL_COPPER_LAYERS,
|
||||||
|
_( "Hide All Copper Layers" ),
|
||||||
|
KiBitmap( show_no_copper_layers_xpm ) );
|
||||||
|
|
||||||
|
menu.AppendSeparator();
|
||||||
|
|
||||||
AddMenuItem( &menu, ID_HIDE_ALL_COPPER_LAYERS_BUT_ACTIVE,
|
AddMenuItem( &menu, ID_HIDE_ALL_COPPER_LAYERS_BUT_ACTIVE,
|
||||||
_( "Hide All Copper Layers But Active" ),
|
_( "Hide All Copper Layers But Active" ),
|
||||||
KiBitmap( select_w_layer_xpm ) );
|
KiBitmap( select_w_layer_xpm ) );
|
||||||
AddMenuItem( &menu, ID_ALWAYS_HIDE_ALL_COPPER_LAYERS_BUT_ACTIVE,
|
AddMenuItem( &menu, ID_ALWAYS_HIDE_ALL_COPPER_LAYERS_BUT_ACTIVE,
|
||||||
_( "Always Hide All Copper Layers But Active" ),
|
_( "Always Hide All Copper Layers But Active" ),
|
||||||
KiBitmap( select_w_layer_xpm ) );
|
KiBitmap( select_w_layer_xpm ) );
|
||||||
AddMenuItem( &menu, ID_HIDE_ALL_COPPER_LAYERS,
|
|
||||||
_( "Hide All Copper Layers" ),
|
|
||||||
KiBitmap( show_no_copper_layers_xpm ) );
|
|
||||||
|
|
||||||
menu.AppendSeparator();
|
menu.AppendSeparator();
|
||||||
|
|
||||||
AddMenuItem( &menu, ID_SHOW_ALL_NON_COPPER,
|
AddMenuItem( &menu, ID_SHOW_ALL_NON_COPPER,
|
||||||
_( "Show All Non Copper Layers" ),
|
_( "Show All Non Copper Layers" ),
|
||||||
KiBitmap( select_w_layer_xpm ) );
|
KiBitmap( select_w_layer_xpm ) );
|
||||||
|
|
Loading…
Reference in New Issue