JAL-1799 deduct more space for decorators on Windows
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Wed, 1 Jul 2015 10:48:04 +0000 (11:48 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Wed, 1 Jul 2015 10:48:04 +0000 (11:48 +0100)
src/jalview/gui/AlignmentPanel.java
src/jalview/util/Platform.java

index 7228e1b..ad7e75c 100644 (file)
@@ -34,6 +34,7 @@ import jalview.math.AlignmentDimension;
 import jalview.schemes.ResidueProperties;
 import jalview.structure.StructureSelectionManager;
 import jalview.util.MessageManager;
+import jalview.util.Platform;
 
 import java.awt.BorderLayout;
 import java.awt.Color;
@@ -531,12 +532,13 @@ public class AlignmentPanel extends GAlignmentPanel implements
 
       /*
        * Estimate available height in the AlignFrame for alignment +
-       * annotations. Deduct an estimate of 75 for menu bar, scale panel,
+       * annotations. Deduct an estimate for title bar, menu bar, scale panel,
        * hscroll, status bar (as these are not laid out we can't inspect their
-       * actual heights). Insets gives borders including title bar.
+       * actual heights). Insets gives frame borders.
        */
+      int stuff = Platform.isAMac() ? 80 : 100;
       Insets insets = alignFrame.getInsets();
-      int availableHeight = alignFrame.getHeight() - 75 - insets.top
+      int availableHeight = alignFrame.getHeight() - stuff - insets.top
               - insets.bottom;
 
       /*
index 333aff4..b812feb 100644 (file)
@@ -32,13 +32,13 @@ public class Platform
    * 
    * @return true if we do things in a special way.
    */
-  public boolean isAMac()
+  public static boolean isAMac()
   {
     return java.lang.System.getProperty("os.name").indexOf("Mac") > -1;
 
   }
 
-  public boolean isHeadless()
+  public static boolean isHeadless()
   {
     String hdls = java.lang.System.getProperty("java.awt.headless");