Tim
Tim

Reputation: 450

JFrame size decreasing

I need your help in java 1.4. How can I prohibit JFrame decreasing. In java 5 or 6 I just:

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

But how in java 1.4? That code does not work!

Upvotes: 3

Views: 171

Answers (1)

dogbane
dogbane

Reputation: 274838

This used to be a bug which was fixed in mustang. Take a look at the bug details for possible workarounds that you can try in 1.4.

Upvotes: 3

Related Questions