mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 17:12:25 -05:00
Fix pressing key buttons (like T) leaking through in listscreen to screens underneath
i.e. you could press T while in change texture pack and that would open chat, even though it shouldn't
This commit is contained in:
parent
d82b40bb0b
commit
b719422ffc
1 changed files with 0 additions and 2 deletions
|
@ -357,8 +357,6 @@ static bool ListScreen_KeyDown(void* screen, Key key) {
|
|||
ListScreen_PageClick(s, false);
|
||||
} else if (key == KEY_RIGHT || key == KEY_PAGEDOWN) {
|
||||
ListScreen_PageClick(s, true);
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue