Remove angle brackets from indeterminate string.

They don't really help any, and they confuse some users into
thinking they need angle brackets around real values.

Fixes: lp:1821601
* https://bugs.launchpad.net/kicad/+bug/1821601
This commit is contained in:
Jeff Young 2019-03-28 19:38:32 +00:00
parent f054dcc77d
commit 33a7c95455
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@
* Used for holding indeterminate values, such as with multiple selections * Used for holding indeterminate values, such as with multiple selections
* holding different values or controls which do not wish to set a value. * holding different values or controls which do not wish to set a value.
*/ */
#define INDETERMINATE wxString( "<...>" ) #define INDETERMINATE wxString( "..." )
/// Convert mm to mils. /// Convert mm to mils.