You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently found the fix to this when digging into BridJ because I want to do some windows taskbar stuff with an FX application, turns out the COM stuff was being created on the main thread (The one that the VM is launched with) and then the rest of the modification (In the 'start') method was being called on a different thread (The JavaFX application thread) and that was throwing the COM/RPC stuff for a loop.
I'm not sure if this is something to be fixed in BridJ or something that you'll just have to be aware of when trying to use this stuff in JavaFX.
From @AnirvanSarkar on January 27, 2015 10:1
ITaskbarList3 works as expected with JFrame but not with JavaFX stage.
For example, the following Swing code displays a progress in taskbar:
But its JavaFX counterpart doesn't show one:
Copied from original issue: nativelibs4java/nativelibs4java#556
The text was updated successfully, but these errors were encountered: