-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P2
-
Affects Version/s: 6u10
-
Component/s: client-libs
Tranparency using JNA libraries stops to work. It works on JDK 1.6u3 and prior versions
The test case to reproduce the problem:
1) https://jna.dev.java.net/ -> 'documents and files' -> 'latest' -> download jna.jar + examples.jar
2) run the following test:
import javax.swing.JFrame;
import com.sun.jna.examples.WindowUtils;
public class test{
public static final void main(String args[]){
JFrame fr = new JFrame();
fr.setBounds(100,100,200,200);
WindowUtils.setWindowTransparent(fr, true);
fr.setVisible(true);
}
}
The test case to reproduce the problem:
1) https://jna.dev.java.net/ -> 'documents and files' -> 'latest' -> download jna.jar + examples.jar
2) run the following test:
import javax.swing.JFrame;
import com.sun.jna.examples.WindowUtils;
public class test{
public static final void main(String args[]){
JFrame fr = new JFrame();
fr.setBounds(100,100,200,200);
WindowUtils.setWindowTransparent(fr, true);
fr.setVisible(true);
}
}
- relates to
-
JDK-6661455 Toplevel windows are not curve like native in windows
-
- Closed
-