mirror of
https://github.com/swaywm/sway.git
synced 2024-11-29 19:31:29 +00:00
Update cursor when border is changed
This commit is contained in:
parent
4fa5e2d9db
commit
51df1d4ff8
|
@ -1,6 +1,8 @@
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "sway/commands.h"
|
#include "sway/commands.h"
|
||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
|
#include "sway/input/cursor.h"
|
||||||
|
#include "sway/input/input-manager.h"
|
||||||
#include "sway/tree/container.h"
|
#include "sway/tree/container.h"
|
||||||
#include "sway/tree/view.h"
|
#include "sway/tree/view.h"
|
||||||
|
|
||||||
|
@ -37,5 +39,10 @@ struct cmd_results *cmd_border(int argc, char **argv) {
|
||||||
|
|
||||||
view_autoconfigure(view);
|
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);
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue