File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 330.03: Better scrolling behaviour
440.04: Fix incorrect appRect handling (missing back buttons and doubled menu titles)
550.05: Bring in change from the firmware implementation forwarding the type of touch (short/long).
6+ 0.06: Disregard long touches since they make it easy to unintentionally select
7+ menu entries.
8+ 0.07: Add "ram" keyword to see if it gets snappier.
Original file line number Diff line number Diff line change 11( function ( ) {
2- E . showScroller = function ( options ) {
2+ E . showScroller = function ( options ) { "ram" ;
33 /* options = {
44 h = height
55 c = # of items
4242 } ;
4343
4444 const touchHandler = ( _ , e ) => {
45+ if ( e . type ) return ; // e.type == 0 for swift touches or 2 for longer ones.
4546 let R = Bangle . appRect ;
4647 if ( e . y < R . y - 4 ) return ;
4748 velocity = 0 ;
Original file line number Diff line number Diff line change 11{ "id" : " kineticscroll" ,
22 "name" : " Kinetic Scroll" ,
33 "shortName" :" Kinetic Scroll" ,
4- "version" : " 0.05 " ,
4+ "version" : " 0.06 " ,
55 "description" : " Replacement for the system scroller with kinetic scrolling." ,
66 "icon" : " app.png" ,
77 "type" : " bootloader" ,
You can’t perform that action at this time.
0 commit comments