diff options
author | Ingo Lohmar <ingo.lohmar@posteo.net> | 2019-05-31 22:25:35 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2019-10-26 11:47:24 +0200 |
commit | 1f09f0b0bbba29ceed9b4e6d558b6ad5b0843cfe (patch) | |
tree | 088d5971746dfcff462b7b80a52d1f1d355f3125 | |
parent | a2c479c4c8d035c11a91e4b954a9f161bf4c7150 (diff) | |
download | st-1f09f0b0bbba29ceed9b4e6d558b6ad5b0843cfe.tar.gz st-1f09f0b0bbba29ceed9b4e6d558b6ad5b0843cfe.tar.bz2 |
apply hints before initial mapping (ICCCM)
For WM_CLASS this is mentioned in the ICCCM docs
https://tronche.com/gui/x/icccm/sec-4.html#s-4.1.2.5
(third sentence).
When changing the WM_CLASS from the command line, this is necessary for
window managers to pick it up before applying class-based rules.
-rw-r--r-- | x.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1154,8 +1154,8 @@ xinit(int cols, int rows) win.mode = MODE_NUMLOCK; resettitle(); - XMapWindow(xw.dpy, xw.win); xhints(); + XMapWindow(xw.dpy, xw.win); XSync(xw.dpy, False); clock_gettime(CLOCK_MONOTONIC, &xsel.tclick1); |