]> Dogcows Code - chaz/openbox/commitdiff
fixed col placement
authorDana Jansens <danakj@orodu.net>
Mon, 29 Apr 2002 20:29:10 +0000 (20:29 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 29 Apr 2002 20:29:10 +0000 (20:29 +0000)
src/Workspace.cc

index ac655d15ec87fe03d2f2fdf6de2374d0df925c28..38581d5a7cd691204b652d1a46ba53e9ef9729a6 100644 (file)
@@ -399,13 +399,13 @@ bool rowLRTB(const Rect &first, const Rect &second){
 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){
This page took 0.024794 seconds and 4 git commands to generate.