Using JavaFX 1.2 I am trying to get custom icons on my app and they are being totally ignored. Am I doing something wrong or is it a bug?
Stage {
title: "My App"
width: 1024
height: 768
scene: bind current_scene
iconified:true;
icons:[
Image { url: "{__DIR__}res/icon16x16.png" },
Image { url: "{__DIR__}res/icon32x32.png" },
Image { url: "{__DIR__}res/icon64x64.png" }
]
}