summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2013-01-07 21:45:25 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2013-01-07 21:45:25 +0000
commitf3d10c93f435da756a4038504c973a6ece848b6f (patch)
treeeafae7d24bf89d1e4cb833fca7b9c38f1c85c2f7
parentd2958210aecb34b5704be577553d8bb01925cafa (diff)
revert previous
-rw-r--r--app/cwm/screen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/screen.c b/app/cwm/screen.c
index eab2eabc7..02fa34220 100644
--- a/app/cwm/screen.c
+++ b/app/cwm/screen.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: screen.c,v 1.43 2013/01/07 20:32:19 okan Exp $
+ * $OpenBSD: screen.c,v 1.44 2013/01/07 21:45:24 okan Exp $
*/
#include <sys/param.h>
@@ -143,8 +143,8 @@ screen_find_xinerama(struct screen_ctx *sc, int x, int y)
y >= info->y_org && y < info->y_org + info->height) {
geom.x = info->x_org;
geom.y = info->y_org;
- geom.w = info->x_org + info->width;
- geom.h = info->y_org + info->height;
+ geom.w = info->width;
+ geom.h = info->height;
break;
}
}