added "32" to the bits combo box

This commit is contained in:
hneemann 2017-03-03 20:23:04 +01:00
parent 62b130edaf
commit d438695f19

View File

@ -117,7 +117,7 @@ public class Key<VALUE> {
* Stores additional combo box values
*/
static final class KeyBits extends KeyInteger {
private static final Integer[] VALUES = new Integer[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
private static final Integer[] VALUES = new Integer[]{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 32};
KeyBits(String key) {
super(key, 1);