mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
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:
parent
2aa6afae54
commit
0b23423c14
@ -505,6 +505,10 @@ static void handle_destroy(struct wl_listener *listener, void *data) {
|
|||||||
|
|
||||||
static void handle_mode(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);
|
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_layers(output);
|
||||||
arrange_output(output);
|
arrange_output(output);
|
||||||
transaction_commit_dirty();
|
transaction_commit_dirty();
|
||||||
|
Loading…
Reference in New Issue
Block a user