Allow toggling the layout before selecting a different one

This commit is contained in:
Guido Cella 2020-07-28 09:54:08 +02:00 committed by Guido Cella
parent 41cc23e1cf
commit 90cc3b1e2c
1 changed files with 2 additions and 1 deletions

3
dwl.c
View File

@ -825,7 +825,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;
}