isAMac() -> isAMacAndNotJS(), isWindows() -> isWindowsAndNotJS()
[jalview.git] / src / jalview / gui / SequenceFetcher.java
index 51be630..79f25e2 100755 (executable)
@@ -145,7 +145,7 @@ public class SequenceFetcher extends JPanel implements Runnable
 
     frame = new JInternalFrame();
     frame.setContentPane(this);
-    int height = Platform.isAMac() ? 240 : 180;
+    int height = Platform.isAMacAndNotJS() ? 240 : 180;
     Desktop.addInternalFrame(frame, getFrameTitle(), true, 400, height);
   }