Don't adjust clock on right-click in EditGame mode WB
authorH.G. Muller <h.g.muller@hccnet.nl>
Mon, 24 Oct 2011 18:00:28 +0000 (20:00 +0200)
committerH.G. Muller <h.g.muller@hccnet.nl>
Mon, 24 Oct 2011 18:00:28 +0000 (20:00 +0200)
This was a change that was already done for the left-clicks, but somehow
never made it togit for the right-clicks

winboard/winboard.c

index 0016e7a..7638faf 100644 (file)
@@ -4227,9 +4227,9 @@ MouseEvent(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
     if(y == -2) {\r
       /* [HGM] right mouse button in clock area edit-game mode ups clock */\r
       if (PtInRect((LPRECT) &whiteRect, pt)) {\r
-          if (gameMode == EditGame || GetKeyState(VK_SHIFT) < 0) AdjustClock(flipClock, 1);\r
+          if (GetKeyState(VK_SHIFT) < 0) AdjustClock(flipClock, 1);\r
       } else if (PtInRect((LPRECT) &blackRect, pt)) {\r
-          if (gameMode == EditGame || GetKeyState(VK_SHIFT) < 0) AdjustClock(!flipClock, 1);\r
+          if (GetKeyState(VK_SHIFT) < 0) AdjustClock(!flipClock, 1);\r
       }\r
       break;\r
     }\r