mirror of
https://github.com/reactos/reactos.git
synced 2025-06-26 15:19:43 +00:00
[CONSRV] Disable the old code for scrolling via keyboard shortcuts as it is buggy. To be fixed later...
This commit is contained in:
parent
421150d5c3
commit
fe3d655bc0
1 changed files with 6 additions and 0 deletions
|
@ -141,6 +141,11 @@ ConioProcessKey(PCONSRV_CONSOLE Console, MSG* msg)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// FIXME: Scrolling via keyboard shortcuts must be done differently,
|
||||||
|
// without touching the internal VirtualY variable.
|
||||||
|
//
|
||||||
|
#if 0
|
||||||
if ( (ShiftState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)) != 0 &&
|
if ( (ShiftState & (RIGHT_ALT_PRESSED | LEFT_ALT_PRESSED)) != 0 &&
|
||||||
(VirtualKeyCode == VK_UP || VirtualKeyCode == VK_DOWN) )
|
(VirtualKeyCode == VK_UP || VirtualKeyCode == VK_DOWN) )
|
||||||
{
|
{
|
||||||
|
@ -172,6 +177,7 @@ ConioProcessKey(PCONSRV_CONSOLE Console, MSG* msg)
|
||||||
ConioDrawConsole(Console);
|
ConioDrawConsole(Console);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Send the key press to the console driver */
|
/* Send the key press to the console driver */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue