* two sequences visible in the top panel
*/
int topPanelHeight = topFrame.getHeight();
+ int bottomPanelHeight = bottomFrame.getHeight();
int topSequencesHeight = topFrame.alignPanel.getSeqPanel().seqCanvas
.getHeight();
int topPanelMinHeight = topPanelHeight
- Math.max(0,
topSequencesHeight - 2 * topViewport.getCharHeight());
- int myHeight = getHeight();
- double minRatio = topPanelMinHeight / (double) myHeight;
+ double totalHeight = (double) topPanelHeight + bottomPanelHeight;
+ double minRatio = topPanelMinHeight / totalHeight;
/*
* calculate the maximum ratio that leaves at least
* two sequences visible in the bottom panel
*/
- int bottomPanelHeight = bottomFrame.getHeight();
int bottomSequencesHeight = bottomFrame.alignPanel.getSeqPanel().seqCanvas
.getHeight();
int bottomPanelMinHeight = bottomPanelHeight
0,
bottomSequencesHeight - 2
* bottomViewport.getCharHeight());
- double maxRatio = (myHeight - bottomPanelMinHeight) / (double) myHeight;
+ double maxRatio = (totalHeight - bottomPanelMinHeight) / totalHeight;
/*
* estimate ratio of (topFrameContent / bottomFrameContent)