I do not think so (but correct me if I am wrong). But I have not had this 
problems (ever), in last two weeks I was doing some changes to "old" code 
and suddenly I have all these problems. Again only on iOS, Android works 
fine.

So I have a main form where I do:

>         Button button = new Button("Open");
>         button.addActionListener(e -> {
>             NewForm gf = new NewForm(someparameter);
>             gf.show();
>         });


then in NewForm class

>     public NewForm(someparameters) {
>         this();
>         this.init();
>     }
>    private void init() {
>         //here I do all the setup regarding looks of this form and here 
> the above shown problem "happens"
>    }

-- 
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 [email protected].
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/55d4c5ba-5bab-4824-8079-fa0b2f1bb0a6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to