diff options
author | Tudor Brindus <me@tbrindus.ca> | 2020-12-05 23:58:57 -0500 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2020-12-06 09:38:49 +0100 |
commit | cc2c0d5966f67189be4cfc350514134d3f4c0f3c (patch) | |
tree | d267d5af6174ac6708503ab006747a41cd137532 /sway/commands | |
parent | b5cc11b2268820fd49151a5a868c5fff285a652c (diff) |
input/cursor: unhide cursor on synthetic input
Fixes #5847.
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/seat/cursor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/seat/cursor.c b/sway/commands/seat/cursor.c index ad7dc905..749235eb 100644 --- a/sway/commands/seat/cursor.c +++ b/sway/commands/seat/cursor.c @@ -45,6 +45,7 @@ static struct cmd_results *handle_command(struct sway_cursor *cursor, } } + cursor_handle_activity_from_idle_source(cursor, IDLE_SOURCE_POINTER); return cmd_results_new(CMD_SUCCESS, NULL); } |