Project

General

Profile

« Previous | Next » 

Revision 0efab289

Added by Katja Luther almost 6 years ago

fix #7422: if nomenclatural status has no type, don't change selected type in details view

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/name/NomenclaturalStatusElement.java
63 63
	@Override
64 64
	public void setEntity(NomenclaturalStatus entity) {
65 65
		super.setEntity(entity);
66
		nomenclaturalStatusTypeCombo.setSelection(entity.getType());
66
		if (entity.getType() != null){
67
		    nomenclaturalStatusTypeCombo.setSelection(entity.getType());
68
		}
67 69
		ruleConsideredText.setText(entity.getRuleConsidered());
68 70
	}
69 71

  

Also available in: Unified diff