Allow toggling the layout before selecting a different one

This commit is contained in:
Guido Cella 2020-07-28 09:54:08 +02:00
parent 9a7b7dd6c6
commit 47b19b295f

3
dwl.c
View file

@ -501,7 +501,8 @@ createmon(struct wl_listener *listener, void *data)
m->nmaster = r->nmaster;
wlr_output_set_scale(wlr_output, r->scale);
wlr_xcursor_manager_load(cursor_mgr, r->scale);
m->lt[0] = m->lt[1] = r->lt;
m->lt[0] = r->lt;
m->lt[1] = &layouts[LENGTH(layouts) > 1 && r->lt != &layouts[1]];
wlr_output_set_transform(wlr_output, r->rr);
break;
}