diff options
author | okan | 2013-06-17 17:11:10 +0000 |
---|---|---|
committer | okan | 2013-06-17 17:11:10 +0000 |
commit | 44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75 (patch) | |
tree | 8c660ca028101e2dd039988fef2c9d08764e5f6b /mousefunc.c | |
parent | 99bf11e128ef433ba54ef1899d937d2f99f9069b (diff) | |
download | cwm-44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75.tar.gz |
move Cursors into conf.
Diffstat (limited to '')
-rw-r--r-- | mousefunc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mousefunc.c b/mousefunc.c index 1b52433..1872aef 100644 --- a/mousefunc.c +++ b/mousefunc.c @@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: mousefunc.c,v 1.52 2013/05/20 20:21:04 okan Exp $ + * $OpenBSD: mousefunc.c,v 1.53 2013/06/17 17:11:10 okan Exp $ */ #include <sys/param.h> @@ -81,7 +81,7 @@ mousefunc_window_resize(struct client_ctx *cc, void *arg) client_raise(cc); client_ptrsave(cc); - if (xu_ptr_grab(cc->win, MOUSEMASK, Cursor_resize) < 0) + if (xu_ptr_grab(cc->win, MOUSEMASK, Conf.cursor[CF_RESIZE]) < 0) return; xu_ptr_setpos(cc->win, cc->geom.w, cc->geom.h); @@ -137,7 +137,7 @@ mousefunc_window_move(struct client_ctx *cc, void *arg) if (cc->flags & CLIENT_FREEZE) return; - if (xu_ptr_grab(cc->win, MOUSEMASK, Cursor_move) < 0) + if (xu_ptr_grab(cc->win, MOUSEMASK, Conf.cursor[CF_MOVE]) < 0) return; xu_ptr_getpos(cc->win, &px, &py); |