Close PhotoStudio when parent window closes

This commit is contained in:
SiboVG 2022-12-01 19:21:32 +01:00
parent 097918f229
commit 20b3748df6

View File

@ -69,6 +69,14 @@ public class PhotoFrame extends JFrame {
public PhotoFrame(OpenRocketDocument document, Window parent) {
this(false, document);
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) {