JAL-1445 (shift+) double click on feature type in desktop feature settings to select...
authorJim Procter <jprocter@compbio.dundee.ac.uk>
Tue, 18 Feb 2014 09:41:56 +0000 (09:41 +0000)
committerJim Procter <jprocter@compbio.dundee.ac.uk>
Tue, 18 Feb 2014 09:41:56 +0000 (09:41 +0000)
src/jalview/gui/FeatureSettings.java

index 9adb254..d7f05dc 100644 (file)
@@ -105,6 +105,12 @@ public class FeatureSettings extends JPanel
                   table.getValueAt(selectedRow, 1), fr.minmax, evt.getX(),
                   evt.getY());
         }
+        else if (evt.getClickCount() == 2)
+        {
+          fr.ap.alignFrame.avc.markColumnsContainingFeatures(
+                  evt.isShiftDown(),
+                  (String) table.getValueAt(selectedRow, 0));
+        }
       }
     });