aboutsummaryrefslogtreecommitdiffstats
path: root/x.c
diff options
context:
space:
mode:
authorQuentin Rameau <quinq@fifth.space>2018-03-16 15:03:10 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-03-16 16:44:30 +0100
commite7ef3c4ce95a21cfcd0988d493f636e1d0115871 (patch)
tree165132bb3cab2b434f11da010da44ba34e9bcad5 /x.c
parent8ab629031bd958d93deee9203fea32c38fe8ac30 (diff)
downloadst-e7ef3c4ce95a21cfcd0988d493f636e1d0115871.tar.gz
Fix regression from 69e32a6 when setting title.
Diffstat (limited to 'x.c')
-rw-r--r--x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x.c b/x.c
index d43a529..06e53d3 100644
--- a/x.c
+++ b/x.c
@@ -1492,7 +1492,7 @@ void
xsettitle(char *p)
{
XTextProperty prop;
- DEFAULT(p, "st");
+ DEFAULT(p, opt_title);
Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
&prop);
remember that computers suck.