From f7324da94fc4494b39e66ba20e8d4d4d011fb73e Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Fri, 8 Feb 2013 16:24:23 +0100 Subject: [PATCH] Connect Ctrl key in WinBoard The Control key is now checked during move entry, for excluding moves during analysis, or for copying pieces when editing a positions. But the WB front-end did not read it out yet! --- winboard/winboard.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/winboard/winboard.c b/winboard/winboard.c index 1359d20..1c41752 100644 --- a/winboard/winboard.c +++ b/winboard/winboard.c @@ -4258,6 +4258,7 @@ MouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) } shiftKey = GetKeyState(VK_SHIFT) < 0; // [HGM] remember last shift status + controlKey = GetKeyState(VK_CONTROL) < 0; // [HGM] remember last shift status switch (message) { case WM_LBUTTONDOWN: -- 1.7.0.4