From b884ecc12ecfcb6dfab7d78269a63e5faaa8b9be Mon Sep 17 00:00:00 2001 From: gmungoc Date: Fri, 1 Jun 2018 19:47:30 +0100 Subject: [PATCH] JAL-3010 allow list of subtypes to be sortable --- src/jalview/gui/FeatureTypeSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/jalview/gui/FeatureTypeSettings.java b/src/jalview/gui/FeatureTypeSettings.java index 64b5c8c..6bea16a 100644 --- a/src/jalview/gui/FeatureTypeSettings.java +++ b/src/jalview/gui/FeatureTypeSettings.java @@ -260,8 +260,8 @@ public class FeatureTypeSettings extends JalviewDialog * determine sub-types (if any) of this feature type */ List types = fr.getRenderOrder(); - subTypes = Collections.unmodifiableList(SequenceOntologyFactory - .getInstance().getChildTerms(this.featureType, types)); + subTypes = SequenceOntologyFactory.getInstance() + .getChildTerms(this.featureType, types); /* * save original colours and filters for this feature type -- 1.7.10.2