From: hche10x Date: Thu, 26 Oct 2006 07:29:30 +0000 (+0000) Subject: 1. Fix EDKT449 Close Build Preferences will crash wizard X-Git-Tag: edk2-stable201903~24030 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=cbee1e74073214f0cef4025a881f13159bd1dcd0 1. Fix EDKT449 Close Build Preferences will crash wizard git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1844 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/toolchain/Preferences.java b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/toolchain/Preferences.java index dcc4b42a36..17e5afe7dd 100644 --- a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/toolchain/Preferences.java +++ b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/toolchain/Preferences.java @@ -555,7 +555,7 @@ public class Preferences extends IFrame { this.setSize(dialogWidth, dialogHeight); this.setContentPane(getJContentPane()); this.setTitle("Build Preferences [" + toolsDefIdentifier + "]"); - this.setDefaultCloseOperation(IFrame.EXIT_ON_CLOSE); + this.setDefaultCloseOperation(IFrame.DISPOSE_ON_CLOSE); this.centerWindow(); this.setVisible(true); }