How to remove the window drop shadow on OSX?
in
Integration and Hardware
•
10 months ago
Anyone knows how to remove the window drop shadow of a Processing / Java application in OSX? For JFrames it should work like this
- JRootPane root = getRootPane();
- root.putClientProperty( "Window.shadow", Boolean.FALSE );
Any ideas on how to do this with an AWT Frame?
1