found nodes do not override hiding anymore
authorcmzmasek <chris.zma@outlook.com>
Tue, 14 Feb 2017 21:53:34 +0000 (13:53 -0800)
committercmzmasek <chris.zma@outlook.com>
Tue, 14 Feb 2017 21:53:34 +0000 (13:53 -0800)
forester/java/src/org/forester/archaeopteryx/AptxConstants.java
forester/java/src/org/forester/archaeopteryx/TreePanel.java

index f1547ac..c884a0f 100644 (file)
@@ -38,8 +38,8 @@ public final class AptxConstants {
 
     final static boolean        __ALLOW_PHYLOGENETIC_INFERENCE                                = true;
     public final static String  PRG_NAME                                                      = "Archaeopteryx";
-    final static String         VERSION                                                       = "0.9920 beta";
-    final static String         PRG_DATE                                                      = "161214";
+    final static String         VERSION                                                       = "0.9921 beta";
+    final static String         PRG_DATE                                                      = "170214";
     final static String         DEFAULT_CONFIGURATION_FILE_NAME                               = "_aptx_configuration_file";
     final static String[]       DEFAULT_FONT_CHOICES                                          = { 
             "Arial Unicode MS", "Dialog", "SansSerif", "Sans", "Arial", "Helvetica" };
index 6af9218..18a8254 100644 (file)
@@ -3416,7 +3416,7 @@ public final class TreePanel extends JPanel implements ActionListener, MouseWhee
                 && ( !ForesterUtil.isEmpty( node.getNodeData().getSequence().getMolecularSequence() ) ) ) {
             paintMolecularSequences( g, node, to_pdf );
         }
-        if ( dynamically_hide && !is_in_found_nodes && ( ( node.isExternal()
+        if ( dynamically_hide && ( ( node.isExternal()
                 && ( ( _external_node_index % dynamic_hiding_factor ) != 1 ) )
                 || ( !node.isExternal() && ( ( new_x_min < 20 )
                         || ( ( _y_distance * node.getNumberOfExternalNodes() ) < getFontMetricsForLargeDefaultFont()