projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a915eb
)
togglefloat should only work in dotile mode (thanks to Sander for this hint)
author
arg@mig29
<unknown>
Tue, 28 Nov 2006 16:35:31 +0000
(17:35 +0100)
committer
arg@mig29
<unknown>
Tue, 28 Nov 2006 16:35:31 +0000
(17:35 +0100)
view.c
patch
|
blob
|
history
diff --git
a/view.c
b/view.c
index 167a1c4b0a0da442db43c862badea1ee8d745061..c11e34934f3374d74838b918b0911a53e9e24ac8 100644
(file)
--- a/
view.c
+++ b/
view.c
@@
-202,7
+202,7
@@
restack(void) {
void
togglefloat(Arg *arg) {
- if (!sel)
+ if (!sel
|| arrange == dofloat
)
return;
sel->isfloat = !sel->isfloat;
arrange();