all repos — fluxbox @ f605312c489378ee3c2070468cc9f115419a9cee

custom fork of the fluxbox windowmanager

Move dockapps to (-100,-100) instead of (screenw + 10, screenh + 10).

The windows used to appear when one xrandr'ed to a bigger resolution.

Signed-off-by: Tomas Janousek <tomi@nomi.cz>
Tomas Janousek tomi@nomi.cz
commit

f605312c489378ee3c2070468cc9f115419a9cee

parent

4faf1bf5c3fe07260b0a4c084db56b0bed12734a

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M src/Slit.ccsrc/Slit.cc

@@ -481,8 +481,7 @@

if (wmhints != 0) { if ((wmhints->flags & IconWindowHint) && (wmhints->icon_window != None)) { - XMoveWindow(disp, client->clientWindow(), screen().width() + 10, - screen().height() + 10); + XMoveWindow(disp, client->clientWindow(), -100, -100); XMapWindow(disp, client->clientWindow()); client->setIconWindow(wmhints->icon_window); client->setWindow(client->iconWindow());