mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
Update notification popup was not sticking to bottom left corner when windows was resized. Fixes #4068
This commit is contained in:
parent
20dad1eed6
commit
31e8706cf4
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user