dwm

personal fork of dwm (rnpnr branch)
git clone anongit@rnpnr.xyz:dwm.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 6ba400ee0fa55d1178cac5f38f4465a1ddf30490
Parent: 35e65ea64095d4a2ef305b20aac9d72624af514c
Author: Anselm R. Garbe
Date:   Mon, 12 Feb 2007 17:20:51 +0100

yet another consistency fix of dwm
Diffstat:
Mview.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/view.c b/view.c @@ -207,7 +207,7 @@ restack(void) { void togglefloat(Arg *arg) { - if (!sel || arrange == dofloat) + if(!sel || arrange == dofloat) return; sel->isfloat = !sel->isfloat; arrange();