Strange.  When was your last known good build?

On Wednesday, 31 August 2016, Bryan Buchanan <bry...@webbtide.com> wrote:

> Have this code to add overflow menu commands:
>
> public void addOverflowMenuCommands(final Form f) {
>
>         Image im = FontImage.createMaterial(FontImage.MATERIAL_PLACE,
> UIManager.getInstance().getComponentStyle("Command"));
>         Image sel = FontImage.createMaterial(FontImage.MATERIAL_PLACE,
> UIManager.getInstance().getComponentSelectedStyle("Command"));
>
>         for (int i = 0; i < 6; i++) {
>             final int j = i;
>             Command command = new Command(addresses[i].getName() + "
> Store") {
>
>                 @Override
>                 public void actionPerformed(ActionEvent evt) {
>                     /**
>                      * store form is always created as needs specific stuff
>                      */
>
>                     StoreForm store = new StoreForm().init();
>                     store.setup(f, j).show();
>                 }
>             };
>             command.setIcon(im);
>             command.setPressedIcon(sel);
>             command.setRolloverIcon(sel);
>
>             f.getToolbar().addCommandToOverflowMenu(command);
>         }
>
>     }
>
>
> Was displaying fine, but a rebuild today displays as attached image.
> Android image also attached, which is fine.
>
> --
> 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
> <javascript:_e(%7B%7D,'cvml','codenameone-discussions%2bunsubscr...@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/c4dce49b-2d1d-44c4-8f67-
> 6b915a435b25%40googlegroups.com
> <https://groups.google.com/d/msgid/codenameone-discussions/c4dce49b-2d1d-44c4-8f67-6b915a435b25%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Steve Hannah
Software Developer
Codename One
http://www.codenameone.com

-- 
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/CAGOYrKUBZYBb5yQEePEaAC7qHgHFjf_qzXyC_Wwn%3DUhC%3DQ7NBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to