Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MenuItems in reversed order #7

Closed
GoogleCodeExporter opened this issue Apr 22, 2015 · 5 comments
Closed

MenuItems in reversed order #7

GoogleCodeExporter opened this issue Apr 22, 2015 · 5 comments

Comments

@GoogleCodeExporter
Copy link

> What steps will reproduce the problem?

    public void onModuleLoad() {
        Menu menu = new Menu();
        menu.addItem(new MenuItem("1"));
        menu.addItem(new MenuItem("2"));
        menu.addItem(new MenuItem("3"));
        new MenuButton("Start", menu).draw();
    }

> What is the expected output?
- Start
-- 1
-- 2
-- 3

> What do you see instead?
- Start
-- 3
-- 2
-- 1

> What version of the product are you using ?
nightly 11-24-2008

> On what operating system ?
FireFox / SuSE Linux

Original issue reported on code.google.com by nikolas....@gmail.com on 25 Nov 2008 at 8:47

@GoogleCodeExporter
Copy link
Author

Original comment by sanjiv.j...@gmail.com on 25 Nov 2008 at 9:23

  • Changed state: Accepted

@GoogleCodeExporter
Copy link
Author

Looking into it, but for now can you use

menu.setItems(new MenuItem("1"), new MenuItem("2"), new MenuItem("3"));



Original comment by sanjiv.j...@gmail.com on 3 Dec 2008 at 12:40

@GoogleCodeExporter
Copy link
Author

Please try build 12-02-2008.

http://forums.smartclient.com/showthread.php?t=3030


Original comment by sanjiv.j...@gmail.com on 3 Dec 2008 at 5:12

@GoogleCodeExporter
Copy link
Author

I can confirm that this is fixed in build 12-04-2008.

Original comment by gaheris@gmail.com on 7 Dec 2008 at 8:42

@GoogleCodeExporter
Copy link
Author

Original comment by sanjiv.j...@gmail.com on 7 Dec 2008 at 8:43

  • Changed state: Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant