JDK-8049216 : [macosx] Window does not exit native FS mode when disposed
  • Type: Bug
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 9
  • Priority: P3
  • Status: Closed
  • Resolution: Duplicate
  • OS: os_x
  • Submitted: 2014-07-03
  • Updated: 2014-07-08
  • Resolved: 2014-07-08
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 9
9Resolved
Related Reports
Duplicate :  
Description
Reproducible on Yosemite. When the window is in native full screen mode, disposing it leaves the user with a black screen. To reproduce use the following app:

    SwingUtilities.invokeLater(() -> {
            JFrame f = new JFrame(" TEST ");
            new JFrame().setVisible(true);
            f.setLayout(new FlowLayout());
            JButton button = new JButton(" Button ");
            f.add(button);
            f.setBounds(100, 100, 100, 100);
            f.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
            f.setVisible(true);
            FullScreenUtilities.setWindowCanFullScreen(f, true);
        });


Comments
duplicate of JDK-8041734
03-07-2014