makeWindowFullyTransparent static method
void
makeWindowFullyTransparent()
Makes a window fully transparent (with no blur effect) (macOS only).
This is a convenience method which executes:
setWindowBackgroundColorToClear();
makeTitlebarTransparent();
addEmptyMaskImage();
disableShadow();
Warning: When the window is fully transparent, its highlight effect (the thin white line at the top of the window) is still visible. This is considered a bug and may change in a future version.
Implementation
static void makeWindowFullyTransparent() {
setWindowBackgroundColorToClear();
makeTitlebarTransparent();
addEmptyMaskImage();
disableShadow();
}