From: Jim Procter Date: Mon, 24 Oct 2016 14:24:54 +0000 (+0100) Subject: Merge branch 'develop' into releases/Release_2_10_0_Branch X-Git-Tag: Release_2_10_0b1~2 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=bc059a21e8d7949157f436dc706fb8d0335b3874;hp=ea3d24d953af89ca95d4480371149b70abbfcc67;p=jalview.git Merge branch 'develop' into releases/Release_2_10_0_Branch --- diff --git a/help/html/editing/index.html b/help/html/editing/index.html index 471e520..fd8c5a3 100755 --- a/help/html/editing/index.html +++ b/help/html/editing/index.html @@ -49,9 +49,8 @@ right to insert gaps and remove gaps.
If the current selection is a group over all sequences in the alignment, or a group over some sequences or all columns in the alignment, then hold down - either "Control" key (or the "Alt;" on OSX if - "Control" does not work) and drag the residue left or - right to edit all sequences in the defined group at once. + "Control" key ("Cmd" key on OSX) and drag the residue + left or right to edit all sequences in the defined group at once.

Copy/paste/cut/delete - any sequences which are in the diff --git a/help/html/releases.html b/help/html/releases.html index 5718926..7d34557 100755 --- a/help/html/releases.html +++ b/help/html/releases.html @@ -53,30 +53,51 @@ Application

General Application - New Known Issues - Build and deployment - + + New Known Issues +
diff --git a/src/jalview/gui/SeqPanel.java b/src/jalview/gui/SeqPanel.java index bae80db..3266fab 100644 --- a/src/jalview/gui/SeqPanel.java +++ b/src/jalview/gui/SeqPanel.java @@ -616,13 +616,14 @@ public class SeqPanel extends JPanel implements MouseListener, return; } - if (evt.isShiftDown() || evt.isAltDown() || evt.isControlDown()) + boolean isControlDown = Platform.isControlDown(evt); + if (evt.isShiftDown() || isControlDown) { - if (evt.isAltDown() || evt.isControlDown()) + editingSeqs = true; + if (isControlDown) { groupEditing = true; } - editingSeqs = true; } else { diff --git a/test/jalview/gui/AlignViewportTest.java b/test/jalview/gui/AlignViewportTest.java index d7b26b0..00c52ed 100644 --- a/test/jalview/gui/AlignViewportTest.java +++ b/test/jalview/gui/AlignViewportTest.java @@ -338,11 +338,9 @@ public class AlignViewportTest /* * test for JAL-2283 don't inadvertently turn on colour by conservation */ - Cache.applicationProperties.setProperty("SHOW_ANNOTATIONS", - Boolean.TRUE.toString()); - Cache.applicationProperties.setProperty("SHOW_CONSERVATION", - Boolean.FALSE.toString()); Cache.applicationProperties.setProperty("DEFAULT_COLOUR_PROT", "NONE"); + Cache.applicationProperties.setProperty("SHOW_CONSERVATION", + Boolean.TRUE.toString()); AlignFrame af = new FileLoader().LoadFileWaitTillLoaded( "examples/uniref50.fa", FormatAdapter.FILE); ColourSchemeI cs = new PIDColourScheme();