all repos — openbox @ 22f8550d4508773fdcd97cfd96ce708550eef9d8

openbox fork - make it a bit more like ryudo

fixed col placement
Dana Jansens danakj@orodu.net
commit

22f8550d4508773fdcd97cfd96ce708550eef9d8

parent

1368ffc54cd0500fd5ec78202901e5051fd0d1b4

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

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

@@ -399,13 +399,13 @@

bool colLRTB(const Rect &first, const Rect &second){ if (first.x()==second.x()) return first.y()<second.y(); - return first.x()<second.y(); + return first.x()<second.x(); } bool colLRBT(const Rect &first, const Rect &second){ if (first.x()==second.x()) return first.y()+first.h()>second.y()+second.h(); - return first.x()<second.y(); + return first.x()<second.x(); } bool colRLTB(const Rect &first, const Rect &second){