Karl T
Karl T
I've added some logs (including stack trace) to `FlatProgressBarUI` that warns when modifying indeterminate progress bar **not** on AWT thread. Please try latest `3.5-SNAPSHOT`: https://github.com/JFormDesigner/FlatLaf#snapshots
The problem is that the IntelliJ themes work differently than the core themes: 1. First the properties files of the base core theme are processed (either `FlatIntelliJLaf` or `FlatDarculaLaf` depending...
@cleancoda following should work: ~~~properties [Dracula---Zihan_Ma]Button.arc = 9999 [Dracula---Zihan_Ma]Panel.background = #7469B6 ~~~ The key prefix (enclosed in `[]`) is the value of the `name` attribute in the theme JSON file:...
Hmm, can not reproduced this here... Could be a Java bug or a graphics driver problem... What Java version do you use? If you resize the window, after dragging it...
Are you using FlatLaf window decorations, enabled with `JFrame.setDefaultLookAndFeelDecorated( true )`? Does it show hostname if you use `JFrame.setDefaultLookAndFeelDecorated( false )`? Could you post a screenshot that shows a title...
Thanks. Is the hostname shown in each window? In JFrames and in JDialogs? Or just in JFrames?
So the last question is: where to get the hostname from? Is it best to get it from the `DISPLAY` environment variable? Using `System.getenv("DISPLAY")`?
What's the value of `DISPLAY` in the Java app? You could find out with a label added to the frame. E.g. `new JLable(System.getenv("DISPLAY"))` I think following could work: ~~~java String...
Hmm, I'm still confused a little bit... Need to set up an environment to try this out... In the meantime, I've found the source code in window manager [Mutter](https://en.wikipedia.org/wiki/Mutter_(software)), which...
> My main request for this is rounded windows ... That would be great. Any idea how to do that? > ...and Gnome-style window decoration... You mean the 3 buttons,...