IDEA-89462 Second long warning notification is shown with strange scrollbar

This commit is contained in:
peter
2012-07-30 19:03:26 +02:00
parent 4935e8f4fd
commit 97c3e67220
@@ -289,7 +289,9 @@ public class NotificationsManagerImpl extends NotificationsManager implements No
content.setBorder(new EmptyBorder(2, 4, 2, 4));
Dimension preferredSize = pane.getPreferredSize();
Dimension preferredSize = text.getPreferredSize();
text.setSize(preferredSize);
preferredSize = text.getPreferredSize();
int maxHeight = Math.min(400, window.getComponent().getHeight() - 20);
if (preferredSize.height > maxHeight) {
pane.setPreferredSize(new Dimension(preferredSize.width, maxHeight));