aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/border.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/border.c')
-rw-r--r--sway/commands/border.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sway/commands/border.c b/sway/commands/border.c
index 873abb68..1eb06a21 100644
--- a/sway/commands/border.c
+++ b/sway/commands/border.c
@@ -1,6 +1,8 @@
#include "log.h"
#include "sway/commands.h"
#include "sway/config.h"
+#include "sway/input/cursor.h"
+#include "sway/input/input-manager.h"
#include "sway/tree/container.h"
#include "sway/tree/view.h"
@@ -37,5 +39,10 @@ struct cmd_results *cmd_border(int argc, char **argv) {
view_autoconfigure(view);
+ struct sway_seat *seat = input_manager_current_seat(input_manager);
+ if (seat->cursor) {
+ cursor_send_pointer_motion(seat->cursor, 0);
+ }
+
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}