Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
implemented Button2 press on tags for toggletag on the focused client
[dwm.git]
/
draw.c
diff --git
a/draw.c
b/draw.c
index
64b11af
..
b8b6c1d
100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-97,9
+97,7
@@
drawstatus()
int i, x;
dc.x = dc.y = 0;
int i, x;
dc.x = dc.y = 0;
- dc.w = bw;
- drawtext(NULL, dc.status, False);
for(i = 0; i < ntags; i++) {
dc.w = textw(tags[i]);
if(seltag[i])
for(i = 0; i < ntags; i++) {
dc.w = textw(tags[i]);
if(seltag[i])
@@
-121,9
+119,12
@@
drawstatus()
}
drawtext(stext, dc.status, False);
}
drawtext(stext, dc.status, False);
- if(
sel && ((dc.w = dc.x - x) > bh)
) {
+ if(
(dc.w = dc.x - x) > bh
) {
dc.x = x;
dc.x = x;
- drawtext(sel->name, dc.sel, False);
+ if(sel)
+ drawtext(sel->name, dc.sel, False);
+ else
+ drawtext(NULL, dc.norm, False);
}
XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
XSync(dpy, False);
}
XCopyArea(dpy, dc.drawable, barwin, dc.gc, 0, 0, bw, bh, 0, 0);
XSync(dpy, False);
@@
-132,8
+133,6
@@
drawstatus()
void
drawtitle(Client *c)
{
void
drawtitle(Client *c)
{
- int i;
-
if(c == sel && issel) {
drawstatus();
XUnmapWindow(dpy, c->twin);
if(c == sel && issel) {
drawstatus();
XUnmapWindow(dpy, c->twin);