Skip to content

Commit 02fec1a

Browse files
committed
Don't show Java icon in dock on macOS
1 parent 9674c97 commit 02fec1a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/ASConfigC.as

+4
Original file line numberDiff line numberDiff line change
@@ -1431,6 +1431,10 @@ package
14311431
compilerArgs.unshift("-Dflexlib=" + escapePath(frameworkPath));
14321432
compilerArgs.unshift("-Dflexcompiler=" + escapePath(this._sdkHome));
14331433
}
1434+
if(process.platform === "darwin")
1435+
{
1436+
compilerArgs.unshift("-Dapple.awt.UIElement=true");
1437+
}
14341438
if(this._jvmArgs)
14351439
{
14361440
var jvmArgCount:int = this._jvmArgs.length;

0 commit comments

Comments
 (0)