mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 05:51:26 +08:00
[CONSRV] Disable the old code for scrolling via keyboard shortcuts as it is buggy. To be fixed later...
This commit is contained in:
@@ -141,6 +141,11 @@ ConioProcessKey(PCONSRV_CONSOLE Console, MSG* msg)
|
||||
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 &&
|
||||
(VirtualKeyCode == VK_UP || VirtualKeyCode == VK_DOWN) )
|
||||
{
|
||||
@@ -172,6 +177,7 @@ ConioProcessKey(PCONSRV_CONSOLE Console, MSG* msg)
|
||||
ConioDrawConsole(Console);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Send the key press to the console driver */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user