]> Dogcows Code - chaz/openbox/commitdiff
change how the pointer is moved.. try make this more consistant when warping at high...
authorDana Jansens <danakj@orodu.net>
Tue, 20 Aug 2002 18:43:29 +0000 (18:43 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 20 Aug 2002 18:43:29 +0000 (18:43 +0000)
src/Window.cc

index b73af2b503618607dcb8742262cb151d1892bb77..d71f4508b888ce4a7333a4d35c8b6a90f798659c 100644 (file)
@@ -3115,12 +3115,12 @@ void BlackboxWindow::doWorkspaceWarping(int x_root, int y_root,
   if (focus)
     setInputFocus();
 
-  int dest_x;
+  int dest_x = x_root;
   if (x_root <= 0) {
-    dest_x = screen->getRect().right() - 1;
+    dest_x += screen->getRect().width() - 1;
     dx += screen->getRect().width() - 1;
   } else {
-    dest_x = 0;
+    dest_x -= screen->getRect().width() - 1;
     dx -= screen->getRect().width() - 1;
   }
 
This page took 0.026303 seconds and 4 git commands to generate.