I have implemented new code into my Java Swing project when suddenly one single panel goes blank on the design tab. Is there any known type of implementation that may interfere this way?
Blank design tab with one panel
Normal design tab with any other panel
I wish I could share the whole code, but since its GUI oriented it gets pretty long.
I am currently trying to locate the problem by mixing the current code with the last commit pretty much randomly. I would really appreciate it if you shared better ideas for locating the source of the problem.
Thank you.
Found it. I was using my own custom components and at some point decided to modify the behaviour of my extension table based on external parameters:
To fix this
So apparently WindowBuilder struggles when it comes to the rendering of heavily modified components even if they are separate from the main GUI panel.
Thanks for the comments! :)