I can’t figure out what happens in my application but my jME canvas horizontal size won’t decrease. I can only increase it. Vertical is ok. Any ideas?
Thanks.
I also had this issue in jMP, its a strange bug in the lwjgl canvas when the dimension of the parent container is zero. Try adding setMinimumSize(new java.awt.Dimension(10, 10));
to the parent container constructor.
Cheers,
Normen
WoW Nice, it works! :v) THanks