diff options
author | Christoph Lohmann <20h@r-36.net> | 2015-12-20 01:43:32 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2015-12-20 01:43:32 +0100 |
commit | ff241199edc7631d6599c22414ef6823059a1072 (patch) | |
tree | 3996ef5d3de49c8f4951cffa92a1cea7d1cede3b /st.c | |
parent | 375b28720f7c78e6fac1c274f9dee7c40a78aacb (diff) |
Fixing the XClassHint setting in st.
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3237,7 +3237,7 @@ xclear(int x1, int y1, int x2, int y2) void xhints(void) { - XClassHint class = {opt_class ? opt_class : termname, termname}; + XClassHint class = {termname, opt_class ? opt_class : termname}; XWMHints wm = {.flags = InputHint, .input = 1}; XSizeHints *sizeh = NULL; |