Shikhar13 / codenameone

Automatically exported from code.google.com/p/codenameone
0 stars 0 forks source link

auto scroll (repeatedkeypress) makes scrolling go hay wire #296

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
public ScrollTestForTextOnly() {
        Form form = new Form();
        Container contentPane = form.getContentPane();
        contentPane.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
        for (int i = 0; i < 200; i++) {                             
            contentPane.addComponent(new Button("Test"));
        }
        form.show();
    }

J2ME
Use your keyboard and keep the arrow key in. play with it. after a minute or so 
scrolling in essence is completely broken.

Original issue reported on code.google.com by jkoo...@gmail.com on 15 Aug 2012 at 6:02