IDEA-51824 Task list menu unavailable with scroll bar

This commit is contained in:
Alexey Pegov
2010-01-28 17:58:53 +03:00
parent e9d56b7c0b
commit fde62e30ad
@@ -288,6 +288,10 @@ public abstract class WizardPopup extends AbstractPopup implements ActionListene
int resultWidth = ofContent.width > MAX_SIZE.width ? MAX_SIZE.width : ofContent.width;
int resultHeight = ofContent.height > MAX_SIZE.height ? MAX_SIZE.height : ofContent.height;
if (ofContent.height > MAX_SIZE.height) {
resultWidth += new JScrollPane().getVerticalScrollBar().getPreferredSize().getWidth();
}
return new Dimension(resultWidth, resultHeight);
}
}