-
Notifications
You must be signed in to change notification settings - Fork 71
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
bug: jumping to menu item via numbers do not work when ChName is selected #142
Comments
More interesting things:
|
uv-k5-firmware-custom/app/menu.c Line 1007 in 15ff3d1
|
uv-k5-firmware-custom/app/menu.c Line 1557 in 15ff3d1
uv-k5-firmware-custom/app/menu.c Line 1596 in 15ff3d1
|
Fixed it with a change in one spot only: uv-k5-firmware-custom/ui/menu.c Line 746 in 15ff3d1
change if (!gIsInSubMenu || edit_index < 0) to
and |
Ok, thank you. It will be fixed in the next release. |
Steps to reproduce:
MENU
1
7
to get to ChName*
andF
) do nothing. It thinks a channel name is being inputted, maybe.This probably has something to do with
edit_index
in menu.c. Either it's not being set to -1, or something is changing it.A fast fix would be to add a check for
gIsInSubMenu
in each of the affected key functions, but that's not ideal and takes up precious bytes...The text was updated successfully, but these errors were encountered: