Update output propertes on mode change

This was previously done when arranging the output, but only needs to be
done on mode change.
This commit is contained in:
Ryan Dwyer 2018-08-31 18:59:20 +10:00
parent 2aa6afae54
commit 0b23423c14
1 changed files with 4 additions and 0 deletions

View File

@ -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();