Slightly better swap layer column names.

Fixes: lp:1789390
* https://bugs.launchpad.net/kicad/+bug/1789390
This commit is contained in:
Jeff Young 2018-08-29 22:00:59 +01:00
parent 12213d994a
commit 658e387ad4
1 changed files with 6 additions and 1 deletions

View File

@ -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"; }