2
0

Corrected conversion exception (from long to UnsignedInteger) on linux oracle and open jdk.

This commit is contained in:
Joel Snape 2016-10-08 19:03:48 +01:00
parent b050cc4994
commit 1da235bbdf

View File

@ -119,7 +119,7 @@ public class PasswordFrame extends JFrame implements DocumentListener {
siteVersionField = Components.comboBox( MasterKey.Version.values() ), //
Components.stud(), //
siteCounterField = Components.spinner(
new SpinnerNumberModel( 1L, 1L, UnsignedInteger.MAX_VALUE, 1L ) ) );
new SpinnerNumberModel( UnsignedInteger.ONE, UnsignedInteger.ONE, UnsignedInteger.MAX_VALUE, UnsignedInteger.ONE ) ) );
sitePanel.add( siteSettings );
siteTypeField.setFont( Res.valueFont().deriveFont( 12f ) );
siteTypeField.setSelectedItem( MPSiteType.GeneratedLong );