Browse Source

Use unicode arrows instead of > and v.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/21820
pull/19/head
Jeff Young 2 months ago
parent
commit
74a81e21e2
  1. 4
      eeschema/fields_data_model.cpp

4
eeschema/fields_data_model.cpp

@ -335,9 +335,9 @@ wxString FIELDS_EDITOR_GRID_DATA_MODEL::GetValue( int aRow, int aCol )
{
// Poor-man's tree controls
if( m_rows[aRow].m_Flag == GROUP_COLLAPSED )
return wxT( "> " ) + GetValue( m_rows[aRow], aCol );
return wxT( " " ) + GetValue( m_rows[aRow], aCol );
else if( m_rows[aRow].m_Flag == GROUP_EXPANDED )
return wxT( "v " ) + GetValue( m_rows[aRow], aCol );
return wxT( " " ) + GetValue( m_rows[aRow], aCol );
else if( m_rows[aRow].m_Flag == CHILD_ITEM )
return wxT( " " ) + GetValue( m_rows[aRow], aCol );
else

Loading…
Cancel
Save