This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
dwm
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
applied dave's highlight patch for big fonts
config
Anselm R. Garbe
18 years ago
parent
c045459917
commit
c8e57332d1
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
draw.c
+ 1
- 1
draw.c
View File
@ -72,7 +72,7 @@ drawtext(const char *text, unsigned long col[ColLast], Bool highlight) {
if
(
highlight
)
{
r
.
x
=
dc
.
x
+
2
;
r
.
y
=
dc
.
y
+
2
;
r
.
width
=
r
.
height
=
3
;
r
.
width
=
r
.
height
=
(
h
+
2
)
/
4
;
XFillRectangles
(
dpy
,
dc
.
drawable
,
dc
.
gc
,
&
r
,
1
)
;
}
}
Write
Preview
Loading…
Cancel
Save