quick fix on ListBox:onRelease index out of range error

This commit is contained in:
frankiezafe 2018-06-11 11:53:40 +02:00
parent 1f7cb64986
commit cabff9ab86
1 changed files with 6 additions and 1 deletions

View File

@ -128,9 +128,14 @@ public class ListBox extends Controller< ListBox > implements ControlListener {
} else if ( isOpen ) {
double n = Math.floor( ( getPointer( ).y( ) - barHeight ) / itemHeight );
// n += itemRange; /* UP */
int index = ( int ) n + itemIndexOffset;
if ( index < 0 || index >= items.size() ) {
// no need to go further, there is something wrong in the position process
return;
}
Map m = items.get( index );