aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/seat
diff options
context:
space:
mode:
authorLibravatar Tudor Brindus <me@tbrindus.ca>2020-12-05 23:58:57 -0500
committerLibravatar Simon Ser <contact@emersion.fr>2020-12-06 09:38:49 +0100
commitcc2c0d5966f67189be4cfc350514134d3f4c0f3c (patch)
treed267d5af6174ac6708503ab006747a41cd137532 /sway/commands/seat
parentcriteria: fix crash when comparing NULL properties (diff)
downloadsway-cc2c0d5966f67189be4cfc350514134d3f4c0f3c.tar.gz
sway-cc2c0d5966f67189be4cfc350514134d3f4c0f3c.tar.zst
sway-cc2c0d5966f67189be4cfc350514134d3f4c0f3c.zip
input/cursor: unhide cursor on synthetic input
Fixes #5847.
Diffstat (limited to 'sway/commands/seat')
-rw-r--r--sway/commands/seat/cursor.c1
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,
45 } 45 }
46 } 46 }
47 47
48 cursor_handle_activity_from_idle_source(cursor, IDLE_SOURCE_POINTER);
48 return cmd_results_new(CMD_SUCCESS, NULL); 49 return cmd_results_new(CMD_SUCCESS, NULL);
49} 50}
50 51