X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=_UIFramework.pde;fp=_UIFramework.pde;h=ba5a8c8e2b8ac1cd1a10b6887fb5b24fdd2befd6;hb=8f7f055d9fa923583e4f00a77959fda8ca7c89ed;hp=c2ac5055ff09052711ddbf155c8192b8375e6f32;hpb=1f42cce70281d4d70378a2be362f6cb2c6d5f45f;p=SugarCubes.git diff --git a/_UIFramework.pde b/_UIFramework.pde index c2ac505..ba5a8c8 100644 --- a/_UIFramework.pde +++ b/_UIFramework.pde @@ -696,7 +696,6 @@ public class UIScrollList extends UIObject { if (scrollOffset + index < items.size()) { pressedItem = items.get(scrollOffset + index); pressedItem.onMousePressed(); - pressedItem.select(); redraw(); } } @@ -754,7 +753,6 @@ public interface ScrollItem { public boolean isSelected(); public boolean isPending(); public String getLabel(); - public void select(); public void onMousePressed(); public void onMouseReleased(); }