remove binding left/right arrow keys to setup page previous/next because it doesn't work as expected

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6937 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: ad6f7b30dc61ffd3f7ffc7c82a8f1725f58ab32a
Former-commit-id: d620e52da67e0252610243ed147f213e80e0bd8a
This commit is contained in:
iobyte 2020-04-22 15:42:42 +00:00
parent 030482ee30
commit 9dc818afb5

View file

@ -597,8 +597,6 @@ bool CarSetupMenu::initialize(void *pPrevMenu, const GfRace *pRace, const GfDriv
addShortcut(GFUIK_RETURN, "Accept", this, onAcceptCallback, NULL);
addShortcut(GFUIK_F1, "Help", getMenuHandle(), GfuiHelpScreen, NULL);
addShortcut(GFUIK_F12, "Screen-Shot", NULL, GfuiScreenShot, NULL);
addShortcut(GFUIK_LEFT, "Previous Page", this, onPreviousCallback, NULL);
addShortcut(GFUIK_RIGHT, "Next Page", this, onNextCallback, NULL);
return true;
}