mirror of
https://github.com/sojamo/controlp5
synced 2024-11-22 14:07:55 +01:00
Fix to Issue #40
Added check if index is in range before using it to index the list of items.
This commit is contained in:
parent
665b0c1aa5
commit
9eedf3ad45
@ -127,6 +127,7 @@ public class DropdownList extends Controller< DropdownList > implements ControlL
|
||||
// n += itemRange; /* UP */
|
||||
int index = ( int ) n + itemIndexOffset;
|
||||
|
||||
if (index < items.size()) {
|
||||
Map m = items.get( index );
|
||||
|
||||
switch ( _myType ) {
|
||||
@ -146,6 +147,7 @@ public class DropdownList extends Controller< DropdownList > implements ControlL
|
||||
m.put( "state" , !ControlP5.b( m.get( "state" ) ) );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user