Skip to content

Commit 31e8706

Browse files
author
Federico Fissore
committed
Update notification popup was not sticking to bottom left corner when windows was resized. Fixes #4068
1 parent 20dad1e commit 31e8706

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

app/src/cc/arduino/view/NotificationPopup.java

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ public NotificationPopup(Frame parent, HyperlinkListener hyperlinkListener, Stri
5353
public void componentMoved(ComponentEvent e) {
5454
updateLocation(parent);
5555
}
56+
57+
@Override
58+
public void componentResized(ComponentEvent e) {
59+
updateLocation(parent);
60+
}
5661
};
5762
parent.addComponentListener(parentMovedListener);
5863

0 commit comments

Comments
 (0)