Slightly better swap layer column names.
Fixes: lp:1789390 * https://bugs.launchpad.net/kicad/+bug/1789390
This commit is contained in:
parent
12213d994a
commit
658e387ad4
|
@ -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…
Reference in New Issue