mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
MenuScroller: fixed error when scrolling with the mouse wheel but there is nothing to scroll
This commit is contained in:
parent
9e81ab67bb
commit
3bc9308abc
@ -441,6 +441,10 @@ public class MenuScroller {
|
||||
firstIndex = Math.max(topFixedCount, firstIndex);
|
||||
firstIndex = Math.min(menuItems.length - bottomFixedCount - scrollCount, firstIndex);
|
||||
|
||||
if (firstIndex < 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
upItem.setEnabled(firstIndex > topFixedCount);
|
||||
downItem.setEnabled(firstIndex + scrollCount < menuItems.length - bottomFixedCount);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user