We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When testing the MenuManger on the 5.1.0_RC. Updating the title of a menu cell inside a MenuSelectionListener listener does not work.
MenuSelectionListener
final MenuCell mainCell1 = new MenuCell("Test Cell 1 (speak)", "Secondary Text", "Tertiary Text", livio, livio, null, new MenuSelectionListener() { @Override public void onTriggered(TriggerSource trigger) { } }); final MenuCell mainCell2 = new MenuCell("Test Cell 2", "Secondary Text", null, null, null, voice2, null); mainCell2.setMenuSelectionListener(new MenuSelectionListener() { @Override public void onTriggered(TriggerSource trigger) { mainCell1.setTitle("HI"); sdlManager.getScreenManager().setMenu(Arrays.asList(mainCell1, mainCell2)); } }); sdlManager.getScreenManager().setMenu(Arrays.asList(mainCell1, mainCell2));
MenuCell's title should be updated.
MenuCell's title is not updated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
When testing the MenuManger on the 5.1.0_RC. Updating the title of a menu cell inside a
MenuSelectionListener
listener does not work.Reproduction Steps
Expected Behavior
MenuCell's title should be updated.
Observed Behavior
MenuCell's title is not updated.
OS & Version Information
The text was updated successfully, but these errors were encountered: