-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
7u6
-
Win 7 64bits, netbeans 7.2, JDK7u6
In the following code, p is a Parent Object, when I pass a VBox to it, under full screen mode, nothing happened when I press on the VBox. Inside the VBox there is 5 Labels.
p.setOnMousePressed(new EventHandler<MouseEvent>(){
@Override public void handle(MouseEvent event) {
System.out.println("pressed");
p.setStyle(StyleUtil.generateBtnPressedStyle(color));
}
});
p.setOnMousePressed(new EventHandler<MouseEvent>(){
@Override public void handle(MouseEvent event) {
System.out.println("pressed");
p.setStyle(StyleUtil.generateBtnPressedStyle(color));
}
});