From: H.G.Muller Date: Mon, 3 Jun 2019 12:16:34 +0000 (+0200) Subject: Improve Edit Position usage note X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=239613ee44c1ca247e6d9d09d277d6482c48feca;p=xboard.git Improve Edit Position usage note Bullets for clearing the board and stopping multi-drops were added. --- diff --git a/backend.c b/backend.c index ddb8894..b1a6155 100644 --- a/backend.c +++ b/backend.c @@ -8130,14 +8130,16 @@ RightClick (ClickType action, int x, int y, int *fromX, int *fromY) boards[currentMove][ySqr][xSqr] = EmptySquare; if(newType == EmptySquare && selectedType == EmptySquare) { // click on empty summons context menu if not deselect DisplayNote( _("To edit the position you can:\n" - "* Move pieces around with left button\n" + "* Move pieces around with left mouse button\n" "* Copy pieces by moving with Ctrl key pressed\n" " OR by starting the move with a double-click\n" "* Click a K, R or P a second time to toggle its rights\n" - "* 'Lift' piece with right-click for multi-dropping\n" + "* 'Lift' a piece with right-click for multi-dropping\n" "* Drop a piece of the lifted type by left-click on empty\n" + "* Right-click on empty to finish dropping\n" "* Adjust the type of a dropped piece by clicking it again\n" - "* Click a clock to set the side to move")); + "* Click the active clock (repeatedly) to clear the board\n" + "* Click the inactive clock to change the side to move")); return -2; } selectedType = newType; Deselect();