Changeset 11424


Ignore:
Timestamp:
2006-03-21T10:10:39+12:00 (18 years ago)
Author:
kjdon
Message:

added spaces between value and - and description in the OptionList item display string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/cdm/ArgumentConfiguration.java

    r11284 r11424  
    976976        if(text == null) {
    977977            if(description.length() >= MAX_DESC) {
    978                 text = value + StaticStrings.MINUS_CHARACTER + description.substring(0, MAX_DESC) + StaticStrings.TRUNCATED_STRING;
     978                text = value + " "+ StaticStrings.MINUS_CHARACTER + " "+ description.substring(0, MAX_DESC) + StaticStrings.TRUNCATED_STRING;
    979979            }
    980980            else {
    981                text = value + StaticStrings.MINUS_CHARACTER + description;
     981               text = value + " "+ StaticStrings.MINUS_CHARACTER + " "+ description;
    982982            }
    983983        }
Note: See TracChangeset for help on using the changeset viewer.