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
In certain circumstances, the menu manager will not create a correct unique title for menu cells.
SDLWindowCapability+ScreenManagerExtensions.m/hasTextFieldOfName
let cell1 = SDLMenuCell(title: "A", secondaryText: "Secondary Text", tertiaryText: nil, icon: nil, secondaryArtwork: nil, voiceCommands: nil) { _ in print("Cell 1") } let cell2 = SDLMenuCell(title: "A", secondaryText: nil, tertiaryText: nil, icon: nil, secondaryArtwork: nil, voiceCommands: nil) { _ in print("Cell 2") } let cell3 = SDLMenuCell(title: "C", secondaryText: nil, tertiaryText: nil, icon: nil, secondaryArtwork: nil, voiceCommands: nil) { _ in manager.screenManager.menu = [cell2, cell1]; } return [cell1, cell2, cell3]
It should display A and A(2) again (or perhaps A(2) and A?)
A
A(2)
It displays A and A
[Paste a link to a PR, gist, or other code that exemplifies this behavior]
The text was updated successfully, but these errors were encountered:
Corresponding Java Suite issue: smartdevicelink/sdl_java_suite#1723
Sorry, something went wrong.
joeljfischer
Successfully merging a pull request may close this issue.
Bug Report
In certain circumstances, the menu manager will not create a correct unique title for menu cells.
Reproduction Steps
SDLWindowCapability+ScreenManagerExtensions.m/hasTextFieldOfName
Expected Behavior
It should display
A
andA(2)
again (or perhapsA(2)
andA
?)Observed Behavior
It displays
A
andA
OS & Version Information
Test Case, Sample Code, and / or Example App
[Paste a link to a PR, gist, or other code that exemplifies this behavior]
The text was updated successfully, but these errors were encountered: