diff options
author | emersion <contact@emersion.fr> | 2017-12-12 21:09:51 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-12 21:09:51 +0100 |
commit | d293c429424a9f96c3fc8143af457645326e7a0e (patch) | |
tree | 530509af18e72af36a52e9fd3970a706695919be /sway/desktop | |
parent | c7abb77f2217cc4d5642ef1650f7fc75e1c1a9a4 (diff) | |
download | sway-d293c429424a9f96c3fc8143af457645326e7a0e.tar.xz |
Update output container box in event handler
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index bcdaa7d2..3fd49846 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -91,19 +91,30 @@ static void output_frame_notify(struct wl_listener *listener, void *data) { soutput->last_frame = now; } +static void output_update_size(struct sway_output *output) { + struct wlr_box *output_layout_box = wlr_output_layout_get_box( + root_container.sway_root->output_layout, output->wlr_output); + output->swayc->x = output_layout_box->x; + output->swayc->y = output_layout_box->y; + output->swayc->width = output_layout_box->width; + output->swayc->height = output_layout_box->height; + + arrange_windows(output->swayc, -1, -1); +} + static void output_resolution_notify(struct wl_listener *listener, void *data) { - struct sway_output *soutput = wl_container_of(listener, soutput, resolution); - arrange_windows(soutput->swayc, -1, -1); + struct sway_output *output = wl_container_of(listener, output, resolution); + output_update_size(output); } static void output_scale_notify(struct wl_listener *listener, void *data) { - struct sway_output *soutput = wl_container_of(listener, soutput, scale); - arrange_windows(soutput->swayc, -1, -1); + struct sway_output *output = wl_container_of(listener, output, scale); + output_update_size(output); } static void output_transform_notify(struct wl_listener *listener, void *data) { - struct sway_output *soutput = wl_container_of(listener, soutput, transform); - arrange_windows(soutput->swayc, -1, -1); + struct sway_output *output = wl_container_of(listener, output, transform); + output_update_size(output); } void output_add_notify(struct wl_listener *listener, void *data) { |