Victor Ewert

Results 29 comments of Victor Ewert

At least for now, I've decided to stay on Java 11 (LTS); I worry this might be a problem every time there is a new Java release, and don't want...

I just ran into the same issue after upgrading to 1.13.0 as well.

> > In the meantime, does anyone know how to silence the logger? > > I don't fully understand how the logger works. I've tried using > > ```kotlin >...

Firstly, thank you @hakanai for stepping up, to help with this project. As for this issue, the problem still exists as described. If I don't include System.setProperty("apple.awt.application.name", "PWMinder" ); when...

Thanks for your diligent work, especially for finding the difference between JavaFX and Swing. I also, just wanted to confirm, that the application I found this for, is a Swing...

I sign it within the jpackageImageTask (kotlin dsl): ```kotlin /** * Extends the jpackageImage task. * For Windows, signs the exe file */ tasks.jpackageImage { when (osdetector.os) { Os.WINDOWS.osName ->...

I used to use signtool, but now I use the jsign plugin: https://ebourg.github.io/jsign/ It can be called from within the jpackageImage task. I also noticed about the read-only problem (sorry...

I just ran into this same issue, thanks for logging it, and for posting a work-around, it saved me many hours of head-scratching!

Hmmm, that is unfortunate. I was using CustomMenuItems so I could add tooltips to some of my menu items. Other than not using CustomMenuItems, do you know of any work-arounds...

Thanks for looking into this. For now I will switch to use regular `MenuItem`, and then see if can figure out a way to get tooltips to work.