Remco Poelstra

Results 12 comments of Remco Poelstra

Please see issue #580, I think you are also encountering the problem where JPackage creates a windows executable without a manifest, this causes problems with dpi-awareness which can result in...

I managed to work around it for now by resizing the canvas myself (zooming in on the scene in the upper left corner), for this I override doLayout() of the...

I think the callbacks are for receiving notifications of selection-changes while the dialog is still open. According to the documentation lpstrFile is also used for passing multiple file paths (the...

Thanks for the suggestion, I will look into this. For the rest everything is working ok, my app is decoding and displaying video frames, Eclipse is also showing javacpp-1.5.10-windows-x86_64.jar under...

Yes, if I call ```Loader.load(Loader.class)``` first it's working again. I added some debugging to the ```findResources(Class cls, String name, int maxLength)``` to see for which Class it is trying to...

Does this only happen when using FlatLaf? I have also had issues (see #621) where a Mac trackpad is causing invalid mouse events, but this is unrelated to FlatLaf.

Then just add a ```WindowListener``` to your frame and call ```yourMenuBar.setForeground()``` in the ```windowActivated``` and ```windowDeactivated``` methods. stackoverflow.com and ChatGPT also know a lot about this stuff.

Just a guess, but it might have something to do with the (native) window decorations, it looks like both the host application and the plugin are trying to manipulate the...

I think in your last screenshots FlatLaf is still probably trying to control the layout/style of the title bar (default behavior), i would try disabling the native window decorations of...

And maybe also add: ``` System.setProperty(FlatSystemProperties.USE_NATIVE_LIBRARY, "false"); ```