Update notification popup was not sticking to bottom left corner when windows was resized. Fixes #4068

This commit is contained in:
Federico Fissore 2015-11-03 09:03:32 +01:00
parent 20dad1eed6
commit 31e8706cf4
1 changed files with 5 additions and 0 deletions

View File

@ -53,6 +53,11 @@ public class NotificationPopup extends JDialog {
public void componentMoved(ComponentEvent e) {
updateLocation(parent);
}
@Override
public void componentResized(ComponentEvent e) {
updateLocation(parent);
}
};
parent.addComponentListener(parentMovedListener);