]> Dogcows Code - chaz/openbox/commitdiff
oops. fix workspace warping merge buglet
authorScott Moynes <smoynes@nexus.carleton.ca>
Fri, 4 Oct 2002 03:18:28 +0000 (03:18 +0000)
committerScott Moynes <smoynes@nexus.carleton.ca>
Fri, 4 Oct 2002 03:18:28 +0000 (03:18 +0000)
src/Window.cc

index b8e2214a52751d7e7ca9e72a09be1920bc312a25..8a1bbda2f3314575647abb0dfde55c1a6644abbe 100644 (file)
@@ -3368,7 +3368,7 @@ void BlackboxWindow::doWorkspaceWarping(int x_root, int y_root, int &dx) {
   bool focus = flags.focused; // had focus while moving?
 
   int dest_x = x_root;
-  if (x_root < 0) {
+  if (x_root <= 0) {
     dest_x += screen->getRect().width() - 1;
     dx += screen->getRect().width() - 1;
   } else {
This page took 0.027285 seconds and 4 git commands to generate.