[hackers] [dwm] fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts

From: Anselm R. Garbe <garbeam_AT_gmail.com>
Date: Wed Aug 15 19:36:20 2007

changeset: 954:18381a2cda42
tag: tip
user: Anselm R. Garbe <garbeam_AT_gmail.com>
date: Wed Aug 15 19:31:41 2007 +0200
summary: fixed _DWM_CONFIG persistation, fixed the client disapperance bug during restarts

diff -r d7de5c7bdbe4 -r 18381a2cda42 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 @@ tag(const char *arg) {
         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 @@ togglefloating(const char *arg) {
         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 @@ toggletag(const char *arg) {
         for(j = 0; j < ntags && !sel->tags[j]; j++);
         if(j == ntags)
                 sel->tags[i] = True;
- if(sel)
- persistconfig(sel);
+ persistconfig(sel);
         arrange();
 }
 
Received on Wed Aug 15 2007 - 19:36:20 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 15:57:54 UTC