wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 80c337d10cf3a5df5c0f0b1ce4b2b0b5a797ddef
parent 281e1fb5ab1de616a6b58ed14635992de6fe3b0d
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Fri, 30 Jun 2006 14:18:26 +0200

fixed tf (typo?)


Diffstat:
cmd/wm/column.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cmd/wm/column.c b/cmd/wm/column.c @@ -347,7 +347,7 @@ static void drop_move(Frame *f, XRectangle *new, XPoint *pt) { Area *tgt, *src; - Frame *ft, *tf; + Frame *ft; View *v; tgt = nil; @@ -385,7 +385,7 @@ drop_move(Frame *f, XRectangle *new, XPoint *pt) remove_frame(f); if(before) - insert_frame(tf, f, True); + insert_frame(ft, f, True); else insert_frame(ft, f, False); @@ -398,7 +398,7 @@ drop_move(Frame *f, XRectangle *new, XPoint *pt) remove_frame(f); if(pt->y < (ft->rect.y + ft->rect.height / 2)) - insert_frame(tf, f, True); + insert_frame(ft, f, True); else insert_frame(ft, f, False);