JAL-1690 'scale protein as cDNA' options in Preferences, FontChooser
[jalview.git] / src / jalview / appletgui / AlignFrame.java
index 93bd155..5c8135d 100644 (file)
@@ -3740,6 +3740,8 @@ public class AlignFrame extends EmbmenuFrame implements ActionListener,
 
   private CheckboxMenuItem showAutoLast;
 
+  private SplitFrame splitFrame;
+
   /**
    * Attach the alignFrame panels after embedding menus, if necessary. This used
    * to be called setEmbedded, but is now creates the dropdown menus in a
@@ -4166,4 +4168,13 @@ public class AlignFrame extends EmbmenuFrame implements ActionListener,
     return false;
   }
 
+  public SplitFrame getSplitFrame()
+  {
+    return this.splitFrame;
+  }
+
+  public void setSplitFrame(SplitFrame sf)
+  {
+    this.splitFrame = sf;
+  }
 }