You can reproduce the problem with this (project with business theme) : 
>
>
> Dialog hi = new Dialog("Welcome");
> Label lblDraggable = new Label("DRAGGABLE");
> lblDraggable.setDraggable(true);
>
> Container cntSrc = new Container();
> cntSrc.setDropTarget(true);
> cntSrc.setUIID("ComboBox");
> cntSrc.add(lblDraggable);
> cntSrc.setPreferredH(200);
> Container cntTarget1 = new Container();
> cntTarget1.setDropTarget(true);
> cntTarget1.setUIID("ComboBox");
> cntTarget1.add(new Label("A label"));
>
> Component.setSameHeight(cntSrc, cntTarget1);
> hi.addComponent(BoxLayout.encloseY(cntSrc, cntTarget1));
> hi.getContentPane().setPreferredSize(new Dimension(800, 600));
> hi.show();
>
>
>

-- 
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/90e2f59c-fe93-4dbc-88e3-2ee9b0d9738b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to