Add shift+page[up/down] alias

This commit is contained in:
Marcus Minhorst 2025-09-15 18:24:07 -04:00 committed by Ricardo Luís Vaz Silva
commit 1ca06d94bc

View file

@ -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;
}