From d446c2277710396fb307fcfa7c4ec2bdae523ecb Mon Sep 17 00:00:00 2001 From: bert Date: Sun, 29 Nov 2015 11:54:44 +0100 Subject: [PATCH 1/1] Added user documentation. Signed-off-by: bert --- src/action.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/action.c b/src/action.c index c74e675..6f738ce 100644 --- a/src/action.c +++ b/src/action.c @@ -1954,6 +1954,15 @@ static const char cycledrag_help[] = "Cycle through which object is being dragge #define close_enough(a, b) ((((a)-(b)) > 0) ? ((a)-(b) < (SLOP * pixel_slop)) : ((a)-(b) > -(SLOP * pixel_slop))) +/* %start-doc actions CycleDrag + +@code{CycleDrag} provides an action that can cycle through objects that could +be dragged in the given point while the left mouse button is pressed. + +This lets the user explicitly select the one object to work on. + +%end-doc */ + /*! * \brief Cycle through which object under the crosshair is being * dragged. -- 1.7.3.4