about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--view.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/view.c b/view.c
index 86902d4..21efa16 100644
--- a/view.c
+++ b/view.c
@@ -68,9 +68,8 @@ dofloat(Arg *arg)
 		else
 			ban(c);
 	}
-	if(!(fc = sel) || !isvisible(fc))
-		fc = getnext(clients);
-	focus(fc);
+	if(!sel || !isvisible(sel))
+		focus(getnext(clients));
 	restack();
 }
 
@@ -131,9 +130,8 @@ dotile(Arg *arg)
 		else
 			ban(c);
 	}
-	if(!(fc = sel) || !isvisible(fc))
-		fc = getnext(clients);
-	focus(fc);
+	if(!sel || !isvisible(sel))
+		focus(getnext(clients));
 	restack();
 }