Merge pull request #1867 from SiboVG/close-photostudio
Close PhotoStudio when parent window closes
This commit is contained in:
commit
e19deecf94
@ -69,6 +69,14 @@ public class PhotoFrame extends JFrame {
|
|||||||
public PhotoFrame(OpenRocketDocument document, Window parent) {
|
public PhotoFrame(OpenRocketDocument document, Window parent) {
|
||||||
this(false, document);
|
this(false, document);
|
||||||
setTitle(trans.get("PhotoFrame.title") + " - " + document.getRocket().getName());
|
setTitle(trans.get("PhotoFrame.title") + " - " + document.getRocket().getName());
|
||||||
|
|
||||||
|
// Close this window when the parent is closed
|
||||||
|
parent.addWindowListener(new WindowAdapter() {
|
||||||
|
@Override
|
||||||
|
public void windowClosing(WindowEvent e) {
|
||||||
|
dispose();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public PhotoFrame(boolean app, OpenRocketDocument document) {
|
public PhotoFrame(boolean app, OpenRocketDocument document) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user