Skip to content

Commit

Permalink
Merge pull request #668 from mikkeloscar/rearrange-on-bg-change
Browse files Browse the repository at this point in the history
Rearrange output when setting background
  • Loading branch information
ddevault committed May 21, 2016
2 parents ae52511 + f33cdc0 commit d5c004f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sway/extensions.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,12 @@ static void set_background(struct wl_client *client, struct wl_resource *resourc
config->wl_surface_res = surface;
list_add(desktop_shell.backgrounds, config);
wl_resource_set_destructor(surface, background_surface_destructor);
arrange_windows(swayc_by_handle(output), -1, -1);
wlc_output_schedule_render(config->output);
}

static void set_panel(struct wl_client *client, struct wl_resource *resource,
struct wl_resource *_output, struct wl_resource *surface) {
struct wl_resource *_output, struct wl_resource *surface) {
wlc_handle output = wlc_handle_from_wl_output_resource(_output);
if (!output) {
return;
Expand Down

0 comments on commit d5c004f

Please sign in to comment.