From f1e8a586b53535bad3e201a8cc42b514a8cb6e16 Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Mon, 16 Aug 2004 13:54:41 +0000 Subject: [PATCH] UI nit: make cursor visible upon use of A/S/D keyboard controls. [originally from svn r4467] --- net.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net.c b/net.c index 43c711b..8512a6a 100644 --- a/net.c +++ b/net.c @@ -841,6 +841,7 @@ game_state *make_move(game_state *state, game_ui *ui, int x, int y, int button) button = MIDDLE_BUTTON; else if (button == 'd' || button == 'D') button = RIGHT_BUTTON; + ui->cur_visible = TRUE; } else return nullret;