From ac87df23eab4f9b2ca16d47a4cbaeb63e32215cf Mon Sep 17 00:00:00 2001 From: Josef Gajdusek Date: Tue, 16 Jul 2019 20:58:14 +0200 Subject: Update output manager on layout change The output manager config was not properly updated if the position of the output got changed. --- include/sway/output.h | 2 ++ include/sway/server.h | 1 + 2 files changed, 3 insertions(+) (limited to 'include') diff --git a/include/sway/output.h b/include/sway/output.h index 3d430ea2..a5a2f29e 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -154,6 +154,8 @@ void scale_box(struct wlr_box *box, float scale); enum wlr_direction opposite_direction(enum wlr_direction d); +void handle_output_layout_change(struct wl_listener *listener, void *data); + void handle_output_manager_apply(struct wl_listener *listener, void *data); void handle_output_manager_test(struct wl_listener *listener, void *data); diff --git a/include/sway/server.h b/include/sway/server.h index fd613bb6..21661685 100644 --- a/include/sway/server.h +++ b/include/sway/server.h @@ -34,6 +34,7 @@ struct sway_server { struct sway_input_manager *input; struct wl_listener new_output; + struct wl_listener output_layout_change; struct wlr_idle *idle; struct sway_idle_inhibit_manager_v1 *idle_inhibit_manager_v1; -- cgit v1.2.3-54-g00ecf