aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 0e7f7060..af067326 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -136,10 +136,7 @@ void output_add_notify(struct wl_listener *listener, void *data) {
136 output->resolution.notify = output_resolution_notify; 136 output->resolution.notify = output_resolution_notify;
137 wl_signal_add(&wlr_output->events.resolution, &output->resolution); 137 wl_signal_add(&wlr_output->events.resolution, &output->resolution);
138 138
139 for (int i = 0; i < server->input->seats->length; ++i) { 139 sway_input_manager_configure_xcursor(input_manager);
140 struct sway_seat *seat = server->input->seats->items[i];
141 sway_seat_configure_xcursor(seat);
142 }
143 140
144 arrange_windows(output->swayc, -1, -1); 141 arrange_windows(output->swayc, -1, -1);
145} 142}