diff options
author | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-07-08 16:31:41 +0200 |
---|---|---|
committer | Aurélien Aptel <aurelien.aptel@gmail.com> | 2010-07-08 16:31:41 +0200 |
commit | 499c70cda048e9d62ab9085efb3a6d484c64bf37 (patch) | |
tree | 1e76a2eb2ca38a8a0f2217993f823535f30a8a3a /st.c | |
parent | 2f96cfeadaac871456e2e2acae3b997c23c93d63 (diff) | |
download | st-499c70cda048e9d62ab9085efb3a6d484c64bf37.tar.gz st-499c70cda048e9d62ab9085efb3a6d484c64bf37.tar.bz2 |
fixed background color bug (thx Devin J. Pohly).
Diffstat (limited to 'st.c')
-rwxr-xr-x | st.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -597,7 +597,7 @@ tsetattr(int *attr, int l) { term.c.attr.fg = DefaultFG; break; case 49: - term.c.attr.fg = DefaultBG; + term.c.attr.bg = DefaultBG; break; default: if(BETWEEN(attr[i], 30, 37)) @@ -1032,9 +1032,9 @@ xclear(int x1, int y1, int x2, int y2) { void xhints(void) { - XClassHint chint = {TNAME, TNAME}; - XWMHints wmhint = {.flags = InputHint, .input = 1}; - XSizeHints shint = { + XClassHint class = {TNAME, TNAME}; + XWMHints wm = {.flags = InputHint, .input = 1}; + XSizeHints size = { .flags = PSize | PResizeInc | PBaseSize, .height = xw.h, .width = xw.w, @@ -1043,7 +1043,7 @@ xhints(void) .base_height = 2*BORDER, .base_width = 2*BORDER, }; - XSetWMProperties(xw.dis, xw.win, NULL, NULL, NULL, 0, &shint, &wmhint, &chint); + XSetWMProperties(xw.dis, xw.win, NULL, NULL, NULL, 0, &size, &wm, &class); } void |