THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Jeff Turner (jefft)
Attached to Project - awesome
Summary - Java windows minimize but cannot be maximized/restored
Task Type - Bug Report
Category - Core
Status - Unconfirmed
Assigned To -
Operating System - Linux
Severity - Medium
Priority - Normal
Reported Version - 3.4.11
Due in Version - Undecided
Due Date - Undecided
Details - Running 3.4.3 (Ubuntu Lucid), Java apps can be minimized, but then cannot be restored. The usual means of clicking on the window title in the top bar doesn't work.
To demonstrate:
$ cat > HelloWorldSwing.java << EOF
import javax.swing.JFrame;
import javax.swing.JLabel;
public class HelloWorldSwing {
public static void main(String[] args) {
JFrame frame = new JFrame("HelloWorldSwing");
final JLabel label = new JLabel("Hello World");
frame.getContentPane().add(label);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.pack();
frame.setVisible(true);
}
}
EOF
$ javac HelloWorldSwing.java
$ java HelloWorldSwing
When the app window appears, press <modkey> n or whatever you have mapped to
minimize the window.
Then click 'HelloWorldSwing' in the top bar. The app won't reappear.
I've set 'wnmame LG3D' in case that's relevant. Java reports itself as:
$ java -version
java version "1.6.0_32"
Java(TM) SE Runtime Environment (build 1.6.0_32-b05)
Java HotSpot(TM) Server VM (build 20.7-b02, mixed mode)
Same behaviour with Sun java 1.7.0_02 and OpenJDK 1.6.0_20
More information can be found at the following URL:
https://awesome.naquadah.org/bugs/index.php?do=details&task_id=1002
You are receiving this message because you have requested it from the Flyspray
bugtracking system. If you did not expect this message or don't want to
receive mails in future, you can change your notification settings at the URL
shown above.
--
To unsubscribe, send mail to [email protected].