about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
authorarg@localhost.10kloc.org <unknown>2006-08-21 17:41:09 +0200
committerarg@localhost.10kloc.org <unknown>2006-08-21 17:41:09 +0200
commit1b9fe55025f84a8430b4be5822784551746eee8d (patch)
tree8dd853c58113c12a97f6faf9ab02d753575b53b8 /client.c
parent2272df9d3179ec639066614f4d36d18df16ff725 (diff)
downloaddwm-1b9fe55025f84a8430b4be5822784551746eee8d.tar.gz
after switching to OpenBSD again, I switched back to a saner color scheme
Diffstat (limited to 'client.c')
-rw-r--r--client.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/client.c b/client.c
index cb5334e..8b98c19 100644
--- a/client.c
+++ b/client.c
@@ -73,12 +73,14 @@ focus(Client *c)
 {
 	Client *old = sel;
 
-	if (!issel)
+	if(!issel)
 		return;
-	if(sel && sel->ismax && sel != c)
-		togglemax(NULL);
-	sel = c;
-	if(old && old != c) {
+	if(!sel)
+		sel = c;
+	else if(sel != c) {
+		if(sel->ismax)
+			togglemax(NULL);
+		sel = c;
 		grabbutton(old, AnyButton, 0);
 		drawtitle(old);
 	}