set title before mapping window (thx Kamil Cholewiński).

This commit is contained in:
Aurélien Aptel 2011-05-22 16:57:27 +02:00
parent 7d352f1436
commit 6734de9b6e
1 changed files with 1 additions and 1 deletions

2
st.c
View File

@ -1632,9 +1632,9 @@ xinit(void) {
&(XColor){.red = 0xffff, .green = 0xffff, .blue = 0xffff},
&(XColor){.red = 0x0000, .green = 0x0000, .blue = 0x0000});
XStoreName(xw.dpy, xw.win, opt_title ? opt_title : "st");
XMapWindow(xw.dpy, xw.win);
xhints();
XStoreName(xw.dpy, xw.win, opt_title ? opt_title : "st");
XSync(xw.dpy, 0);
}