Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
configurenotify remembers max geom now, and restores this if necessary, however it...
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
7bc4da0
..
b7c06de
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-30,6
+30,17
@@
RULES
static RReg *rreg = NULL;
static unsigned int len = 0;
static RReg *rreg = NULL;
static unsigned int len = 0;
+static void
+commit()
+{
+ /* asserts sel != NULL */
+ settitle(sel);
+ if(!isvisible(sel))
+ arrange(NULL);
+ else
+ drawstatus();
+}
+
/* extern */
Client *
/* extern */
Client *
@@
-106,6
+117,8
@@
settags(Client *c)
if(!matched)
for(i = 0; i < ntags; i++)
c->tags[i] = seltag[i];
if(!matched)
for(i = 0; i < ntags; i++)
c->tags[i] = seltag[i];
+ for(i = 0; i < ntags && !c->tags[i]; i++);
+ c->weight = i;
}
void
}
void
@@
-119,13
+132,7
@@
tag(Arg *arg)
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
for(i = 0; i < ntags; i++)
sel->tags[i] = False;
sel->tags[arg->i] = True;
- settitle(sel);
- detach(sel);
- attach(sel);
- if(!isvisible(sel))
- arrange(NULL);
- else
- drawstatus();
+ commit();
}
void
}
void
@@
-140,11
+147,5
@@
toggletag(Arg *arg)
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
for(i = 0; i < ntags && !sel->tags[i]; i++);
if(i == ntags)
sel->tags[arg->i] = True;
- settitle(sel);
- detach(sel);
- attach(sel);
- if(!isvisible(sel))
- arrange(NULL);
- else
- drawstatus();
+ commit();
}
}