-
Bug
-
Resolution: Fixed
-
P2
-
fx1.1
-
Windows XP prof, Franca b02
I'm creating a full screen stage with visible set to false. But, its shown on screen in minimized state. This is a regression in franca b02. Its not reproducible with franca integration b140.
Testcase:
import javafx.scene.*;
import javafx.stage.*;
var fs = Stage {
fullScreen: true
visible: false
};
var f = Stage {
width: 200
height: 200
onClose: function() {
fs.close();
}
};
Testcase:
import javafx.scene.*;
import javafx.stage.*;
var fs = Stage {
fullScreen: true
visible: false
};
var f = Stage {
width: 200
height: 200
onClose: function() {
fs.close();
}
};