shortcuts menu bugfix wps context plugin fallthrough
if you ran a plugin from shortcut menu that originated from the WPS next time you pressed select in the wps it would attempt to run the wps context plugin Change-Id: Id72eb6a20522586efeb479aea0b1c50b53942346
This commit is contained in:
parent
29fa47d43d
commit
48952d498d
1 changed files with 2 additions and 1 deletions
|
@ -863,7 +863,8 @@ void root_menu(void)
|
|||
make sure we preserve and restore the origin */
|
||||
if (next_screen == GO_TO_PREVIOUS && shortcut_origin != GO_TO_ROOT)
|
||||
{
|
||||
next_screen = shortcut_origin;
|
||||
if (shortcut_origin != GO_TO_WPS)
|
||||
next_screen = shortcut_origin;
|
||||
shortcut_origin = GO_TO_ROOT;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue