-
Bug
-
Resolution: Cannot Reproduce
-
P2
-
fx1.1
-
Mac 10.4, 10.5, jdk6, franca
This is reproducible only on mac platforms with franca builds. Not reproducible with 1.0.1
I'm iconifying a fullscreen window. This makes the whole screen painted black, there after I'm not able to use the desktop. I've to remote login to the system and kill the process to use the system.
To reproduce, run the below program on mac. Select the 'iconified' checkbox to minimize the fullscreen window. Note that to kill the application, need to remotely login to the system and kill the process.
import javafx.scene.*;
import javafx.stage.*;
import javafx.ext.swing.*;
var iconified: Boolean = false;
Stage {
fullScreen: true
iconified: bind iconified with inverse
scene: Scene {
content: [SwingCheckBox {
text: "Iconify"
selected: bind iconified with inverse
translateX: 50
translateY: 50
}]
}
}
I'm iconifying a fullscreen window. This makes the whole screen painted black, there after I'm not able to use the desktop. I've to remote login to the system and kill the process to use the system.
To reproduce, run the below program on mac. Select the 'iconified' checkbox to minimize the fullscreen window. Note that to kill the application, need to remotely login to the system and kill the process.
import javafx.scene.*;
import javafx.stage.*;
import javafx.ext.swing.*;
var iconified: Boolean = false;
Stage {
fullScreen: true
iconified: bind iconified with inverse
scene: Scene {
content: [SwingCheckBox {
text: "Iconify"
selected: bind iconified with inverse
translateX: 50
translateY: 50
}]
}
}