mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 18:38:48 +00:00
Adjust mouse for x offset.
This commit is contained in:
parent
15362ef6b8
commit
673290d019
5
window.c
5
window.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: window.c,v 1.71 2009-04-01 18:21:42 nicm Exp $ */
|
/* $Id: window.c,v 1.72 2009-04-01 18:46:03 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -684,8 +684,11 @@ window_pane_mouse(
|
|||||||
{
|
{
|
||||||
/* XXX convert from 1-based? */
|
/* XXX convert from 1-based? */
|
||||||
|
|
||||||
|
if (x < wp->xoff || x >= wp->xoff + wp->sx)
|
||||||
|
return;
|
||||||
if (y < wp->yoff || y >= wp->yoff + wp->sy)
|
if (y < wp->yoff || y >= wp->yoff + wp->sy)
|
||||||
return;
|
return;
|
||||||
|
x -= wp->xoff;
|
||||||
y -= wp->yoff;
|
y -= wp->yoff;
|
||||||
|
|
||||||
if (wp->mode != NULL) {
|
if (wp->mode != NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user