aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/st.c b/st.c
index a69cc9e..3aa8539 100644
--- a/st.c
+++ b/st.c
@@ -3383,6 +3383,11 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
3383 width, 1); 3383 width, 1);
3384 } 3384 }
3385 3385
3386 if(base.mode & ATTR_STRUCK) {
3387 XftDrawRect(xw.draw, fg, winx, winy + 2 * font->ascent / 3,
3388 width, 1);
3389 }
3390
3386 /* Reset clip to none. */ 3391 /* Reset clip to none. */
3387 XftDrawSetClip(xw.draw, 0); 3392 XftDrawSetClip(xw.draw, 0);
3388} 3393}