fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts
authorAnselm R. Garbe <garbeam@gmail.com>
Wed, 15 Aug 2007 19:31:41 +0200
changeset 954 18381a2cda42
parent 953 d7de5c7bdbe4
child 955 b2518e01f7e3
fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts
tag.c
--- a/tag.c	Wed Aug 15 19:27:32 2007 +0200
+++ b/tag.c	Wed Aug 15 19:31:41 2007 +0200
@@ -144,8 +144,7 @@
 	i = arg ? atoi(arg) : 0;
 	if(i >= 0 && i < ntags)
 		sel->tags[i] = True;
-	if(sel)
-		persistconfig(sel);
+	persistconfig(sel);
 	arrange();
 }
 
@@ -154,8 +153,10 @@
 	if(!sel || isfloating())
 		return;
 	sel->isfloating = !sel->isfloating;
-	if(sel->isfloating)
+	if(sel->isfloating) {
 		resize(sel, sel->x, sel->y, sel->w, sel->h, True);
+		persistconfig(sel);
+	}
 	arrange();
 }
 
@@ -170,8 +171,7 @@
 	for(j = 0; j < ntags && !sel->tags[j]; j++);
 	if(j == ntags)
 		sel->tags[i] = True;
-	if(sel)
-		persistconfig(sel);
+	persistconfig(sel);
 	arrange();
 }