diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-08-31 18:59:20 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-09-05 18:01:43 +1000 |
commit | 0b23423c14a1f21c0c61dd6db4e22aa9ec21eadb (patch) | |
tree | d166e016b3370869c376e8dd82d5a200e925b28b /sway/desktop | |
parent | 2aa6afae542b4cc25b48510e46abb82f85aca518 (diff) |
Update output propertes on mode change
This was previously done when arranging the output, but only needs to be
done on mode change.
Diffstat (limited to 'sway/desktop')
-rw-r--r-- | sway/desktop/output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 7e9f7b7e..d9c7dbe3 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -505,6 +505,10 @@ static void handle_destroy(struct wl_listener *listener, void *data) { static void handle_mode(struct wl_listener *listener, void *data) { struct sway_output *output = wl_container_of(listener, output, mode); + output->lx = output->wlr_output->lx; + output->ly = output->wlr_output->ly; + wlr_output_effective_resolution(output->wlr_output, + &output->width, &output->height); arrange_layers(output); arrange_output(output); transaction_commit_dirty(); |