https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fe3d655bc04ed1a77620f…
commit fe3d655bc04ed1a77620f66a89ef6326227cdf8a
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Sun Feb 9 00:30:50 2020 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Sun Feb 9 00:38:31 2020 +0100
[CONSRV] Disable the old code for scrolling via keyboard shortcuts as it is buggy. To
be fixed later...
---
win32ss/user/winsrv/consrv/frontends/input.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/win32ss/user/winsrv/consrv/frontends/input.c
b/win32ss/user/winsrv/consrv/frontends/input.c
index a492b28da87..25a53a15c78 100644
--- a/win32ss/user/winsrv/consrv/frontends/input.c
+++ b/win32ss/user/winsrv/consrv/frontends/input.c
@@ -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 */