Browse Source

Fix a I18n issue: a string flagged as translatable cannot be empty.

6.0.7
jean-pierre charras 5 years ago
parent
commit
93d203aef7
  1. 2
      pcbnew/track.cpp

2
pcbnew/track.cpp

@ -733,7 +733,7 @@ void TRACK::GetMsgPanelInfoBase_Common( EDA_DRAW_FRAME* aFrame, std::vector<MSG_
#endif
// Display the State member
aList.emplace_back( _( "Status" ), IsLocked() ? _( "Locked" ) : _( "" ) );
aList.emplace_back( _( "Status" ), IsLocked() ? _( "Locked" ) : wxT( "" ) );
}

Loading…
Cancel
Save