Add shift+page[up/down] alias
This commit is contained in:
parent
995d3c90d3
commit
1ca06d94bc
1 changed files with 2 additions and 2 deletions
|
|
@ -862,7 +862,7 @@ static bool C_HandleKey (event_t *ev, FCommandBuffer &buffer)
|
|||
break;
|
||||
|
||||
case GK_HOME:
|
||||
if (ev->data3 & GKM_CTRL)
|
||||
if (ev->data3 & (GKM_CTRL|GKM_SHIFT))
|
||||
{ // Move to top of console buffer
|
||||
RowAdjust = top_row;
|
||||
}
|
||||
|
|
@ -873,7 +873,7 @@ static bool C_HandleKey (event_t *ev, FCommandBuffer &buffer)
|
|||
break;
|
||||
|
||||
case GK_END:
|
||||
if (ev->data3 & GKM_CTRL)
|
||||
if (ev->data3 & (GKM_CTRL|GKM_SHIFT))
|
||||
{ // Move to bottom of console buffer
|
||||
RowAdjust = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue