Hi

I'm facing a problem since the Friday's update. As described in the title, 
when a sidemenu is present it's no longer possible to swipe tabs, at least 
not gently.
If you show and hide the side menu, then the tabs start working as they 
should.

The issue is very easy to reproduce, both in simulator and devices. Here is 
a test case:

    public void start() {
        if(current != null){
            current.show();
            return;
        }
        Form f = new Form(new BorderLayout());
        Tabs tab = new Tabs();
        Container cont1 = new Container(new BorderLayout());
        Label lbl1 = new Label("Hello 1");
        cont1.add(BorderLayout.CENTER, lbl1);
        Container cont2 = new Container(new BorderLayout());
        Label lbl2 = new Label("Hello 2");
        cont2.add(BorderLayout.CENTER, lbl2);
        tab.addTab("Tab 1", cont1);
        tab.addTab("Tab 2", cont2);
        f.add(BorderLayout.CENTER, tab);
        f.getToolbar().addComponentToSideMenu(new Label("Side Panel"));
        f.show();        
    }


Thank you for your help.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/8317a45b-de1d-4649-8c61-936c6a0dfac7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to