mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-20 17:31:08 +00:00
Fix the color view key gobbling bug.
This commit is contained in:
parent
508fd22d27
commit
01463b0e77
1 changed files with 2 additions and 4 deletions
|
@ -38,12 +38,10 @@
|
|||
- (int) keyEvent:(int)key unicode:(int)unicode down:(int)down
|
||||
{
|
||||
switch (key) {
|
||||
case QFK_DOWN:
|
||||
case QFM_WHEEL_DOWN:
|
||||
case QFK_RIGHT:
|
||||
[self next];
|
||||
return 1;
|
||||
case QFK_UP:
|
||||
case QFM_WHEEL_UP:
|
||||
case QFK_LEFT:
|
||||
[self prev];
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue