See this bug report. The settings in the Oxygen window decoration have changed. This results in the strange situation that while Joxy draws a nice radial background to perfectly match the Oxygen window decoration, Oxygen doesn't draw this window decoration anymore because it thinks that Java applications are not able to draw the radial background or something... See the screenshot attached.
From here it seems that we should set some X Atom to let Oxygen know that it should draw a radial background...
Diff:
Setting this X Atom works indeed: Oxygen nicely draws its radial background again. Now the next question is how we are going to call this for every JFrame that is styled by Joxy.
For reference, this is the code to do this:
I have put this code in the paint method of JRootPane. See commit [c2a7b8].
That seems to work, however, one needs to resize the JFrame before X11 / Oxygen seems to "pick up" this change. Since my knowledge of the X11 protocol is quite non-existing, I think we should ask this to the Oxygen developers...
Related
Commit: [c2a7b8]
Hmm, this doesn't work for Dialogs since they are not Frames. Let's see how to fix that...
Okay, that is fixed in [8b3195].
Related
Commit: [8b3195]