JDK-4162246 : ALT+SPACE does not work in JFrame
  • Type: Bug
  • Component: client-libs
  • Sub-Component: javax.swing
  • Affected Version: 1.2.0
  • Priority: P4
  • Status: Closed
  • Resolution: Duplicate
  • OS: windows_nt
  • CPU: x86
  • Submitted: 1998-07-31
  • Updated: 1998-12-12
  • Resolved: 1998-12-12
Related Reports
Duplicate :  
Description
Compile the code below and run it on Win32. Notice that hitting ALT+SPACE does not bring up the system menu.
This works fine on Solaris.


import com.sun.java.swing.*;
import java.awt.event.*;

public class TestApp extends JFrame
{
        public TestApp() {
                super("TestApp");

                this.addWindowListener(new WindowAdapter() {
                        public void windowClosing(WindowEvent ev) {
                                System.exit(0);
                        }
                });

                this.setSize(300, 300);
                this.setVisible(true);
        }

        static public void main(String args[]) {
                new TestApp();
        }
}

Comments
PUBLIC COMMENTS ALT+SPACE does not work in JFrame
10-06-2004

EVALUATION This is an AWT bug - a dup of 4141621. amy.fowler@Eng 1998-12-11
11-12-1998