all repos — openbox @ 13f1f39f013b00425310859aa7fbe0f779c0f168

openbox fork - make it a bit more like ryudo

dont move frame if not frame exists while mapping
Dana Jansens danakj@orodu.net
commit

13f1f39f013b00425310859aa7fbe0f779c0f168

parent

a132968424c96d9dc62d144c5e863a6810c0369d

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

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

@@ -997,7 +997,8 @@ {

_area.setPos(x, y); // move the frame to be in the requested position - frame->adjustPosition(); + if (frame) // this can be called while mapping, before frame exists + frame->adjustPosition(); }