lt will point to a foo-layout during cleanup now (Gottox' suggestion), and togglelayout respects Arg->v
This commit is contained in:
parent
c56533615f
commit
38a43c2dcc
7
dwm.c
7
dwm.c
@ -363,8 +363,11 @@ checkotherwm(void) {
|
|||||||
void
|
void
|
||||||
cleanup(void) {
|
cleanup(void) {
|
||||||
Arg a = {.i = ~0};
|
Arg a = {.i = ~0};
|
||||||
|
Layout foo = { 0 };
|
||||||
|
|
||||||
close(STDIN_FILENO);
|
close(STDIN_FILENO);
|
||||||
view(&a);
|
view(&a);
|
||||||
|
lt = &foo;
|
||||||
while(stack)
|
while(stack)
|
||||||
unmanage(stack);
|
unmanage(stack);
|
||||||
if(dc.font.set)
|
if(dc.font.set)
|
||||||
@ -1476,7 +1479,9 @@ togglefloating(const Arg *arg) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
togglelayout(const Arg *arg) {
|
togglelayout(const Arg *arg) {
|
||||||
if(++lt == &layouts[LENGTH(layouts)])
|
if(arg->v)
|
||||||
|
lt = (Layout *)arg->v;
|
||||||
|
else if(++lt == &layouts[LENGTH(layouts)])
|
||||||
lt = &layouts[0];
|
lt = &layouts[0];
|
||||||
if(sel)
|
if(sel)
|
||||||
arrange();
|
arrange();
|
||||||
|
Loading…
Reference in New Issue
Block a user