diff --git a/pcbnew/router/router_tool.cpp b/pcbnew/router/router_tool.cpp index 0942ce3a1a..ba7c7aad9d 100644 --- a/pcbnew/router/router_tool.cpp +++ b/pcbnew/router/router_tool.cpp @@ -2422,7 +2422,7 @@ void ROUTER_TOOL::UpdateMessagePanel() wxASSERT( netB ); description = wxString::Format( _( "Routing Diff Pair: %s" ), - netA->GetNetname() + wxT( "/" ) + netB->GetNetname() ); + netA->GetNetname() + wxT( ", " ) + netB->GetNetname() ); wxString netclass; NETCLASS* netclassA = netA->GetNetClass(); @@ -2431,7 +2431,7 @@ void ROUTER_TOOL::UpdateMessagePanel() if( netclassA == netclassB ) netclass = netclassA->GetName(); else - netclass = netclassA->GetName() + wxT( "/" ) + netclassB->GetName(); + netclass = netclassA->GetName() + wxT( ", " ) + netclassB->GetName(); secondary = wxString::Format( _( "Resolved Netclass: %s" ), UnescapeString( netclass ) );