Merge branch 'kjvdh/features/PhylogenyViewer' of
[jalview.git] / src / jalview / ext / archaeopteryx / AptxInit.java
@@ -22,7 +22,7 @@ import org.forester.phylogeny.PhylogenyNode;
  * @author kjvanderheide
  *
  */
-public final class ArchaeopteryxInit
+public final class AptxInit
 {
   /**
    * Test method, should generally not be used as it does not bind the tree to
@@ -56,7 +56,7 @@ public final class ArchaeopteryxInit
   public static MainFrame createInstance(
           final TreeBuilder calculatedTree) // very dense method, to be split up
   {
-    ExternalTreeBuilderI<Phylogeny, PhylogenyNode> aptxTreeBuilder = new ArchaeopteryxTreeBuilder(
+    ExternalTreeBuilderI<Phylogeny, PhylogenyNode> aptxTreeBuilder = new AptxTreeBuilder(
             calculatedTree);
 
     Phylogeny aptxTree = aptxTreeBuilder.buildTree();
@@ -99,6 +99,8 @@ public final class ArchaeopteryxInit
     int width = 400;
     int height = 550;
     aptxApp.setMinimumSize(new Dimension(width, height));
+    // aptxApp.setFont(Desktop.instance.getFont());
+    // aptxApp.getMainPanel().setFont(Desktop.instance.getFont());
 
     Desktop.addInternalFrame(aptxApp, "Archaeopteryx Tree View", true,
             width, height, true, true);