From e4f07b46925aab614764ac5f7949773a30a0c2d1 Mon Sep 17 00:00:00 2001 From: Murilo Pereira Date: Fri, 10 Jun 2011 00:07:13 -0300 Subject: [PATCH] Move cursor down 1 row when moving to empty maneuvre stacks. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/keyboard.c b/src/keyboard.c index e5ae22e..ad1505a 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -122,7 +122,7 @@ static void handle_card_movement(struct cursor *cursor) { } } else { if (valid_move(*origin, *destination)) { - if (maneuvre_stack(*destination) && stack_length(*destination) > 1) { + if (maneuvre_stack(*destination)) { cursor->y++; } move_card(origin, destination);