JAL-1695 default ENABLE_SPLIT_FRAME to true for desktop
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 18 Jun 2015 16:09:32 +0000 (17:09 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Thu, 18 Jun 2015 16:09:32 +0000 (17:09 +0100)
(enableSplitFrame false for applet)

src/jalview/gui/AlignFrame.java
src/jalview/gui/AlignViewport.java

index db61f77..9ad126f 100644 (file)
@@ -4845,7 +4845,7 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
 
             // temporary flag until SplitFrame is released
             boolean asSplitFrame = Cache.getDefault(
-                    Preferences.ENABLE_SPLIT_FRAME, false);
+                    Preferences.ENABLE_SPLIT_FRAME, true);
             if (asSplitFrame)
             {
               /*
@@ -4977,7 +4977,7 @@ public class AlignFrame extends GAlignFrame implements DropTargetListener,
               "label.translation_of_params", new Object[]
               { this.getTitle() });
       af.setTitle(newTitle);
-      if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, false))
+      if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
       {
         final SequenceI[] seqs = viewport.getSelectionAsNewSequence();
         viewport.openSplitFrame(af, new Alignment(seqs),
index 2224021..16e3de7 100644 (file)
@@ -803,7 +803,7 @@ public class AlignViewport extends AlignmentViewport implements
      * If any cDNA/protein mappings can be made between the alignments, offer to
      * open a linked alignment with split frame option.
      */
-    if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, false))
+    if (Cache.getDefault(Preferences.ENABLE_SPLIT_FRAME, true))
     {
       if (AlignmentUtils.isMappable(al, getAlignment()))
       {