JFrame downsizing

I need your help in java 1.4. How can I disable JFrame shortening. In java 5 or 6, I just:

new JFrame("TEST").setMinimumSize(...);

But how is it in java 1.4? This code does not work!

+3
source share
1 answer

This was a bug that was fixed in the mustang. Take a look at the error details for possible workarounds that you can try in version 1.4.

+3
source

Source: https://habr.com/ru/post/1781967/


All Articles