Open GoogleCodeExporter opened 8 years ago
[deleted comment]
(From oshedar@gmail.com via email)
.. after I rectified the below bug another bug was generated as a result of
the change in code. the down and up arrow keys were skipping 1 row when
scrolling. it was because code was being executed on both keyup and keydown
events.
What steps will reproduce the problem?
1. open the drop down and then press the down arrow key
2. next item will be skipped and the 3rd item will be selected
What is the expected output? What do you see instead?
next item should be selected
next item is skipped and the 3rd item gets selected
have resolved the bug
simply replace line number 108 which has foll code
self.selectNext(false);
with the foll
if(isKeyDown) self.selectNext(false);
and replace line number 117 which has foll code
self.selectPrev(false);
with the foll
if(isKeyDown) self.selectPrev(false);
enjoy
hoshi
Original comment by thetoolman
on 4 Sep 2012 at 7:24
Original issue reported on code.google.com by
thetoolman
on 15 May 2012 at 5:31