Browse Source

Slightly better swap layer column names.

Fixes: lp:1789390
* https://bugs.launchpad.net/kicad/+bug/1789390
pull/13/head
Jeff Young 7 years ago
parent
commit
658e387ad4
  1. 7
      pcbnew/dialogs/dialog_swap_layers.cpp

7
pcbnew/dialogs/dialog_swap_layers.cpp

@ -49,7 +49,12 @@ public:
wxString GetColLabelValue( int aCol ) override
{
return aCol == 1 ? wxString( _( "Move To:" ) ) : wxString( wxEmptyString );
switch( aCol )
{
case 0: return _( "Move items on:" );
case 1: return _( "To layer:" );
default: return wxEmptyString;
}
}
wxString GetValue( int row, int col ) override { return "undefined"; }

Loading…
Cancel
Save