diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | mcwm.c | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -2,6 +2,12 @@ User visible changes +2011-07-26 + + * Tabbing warps to middle of window instead of corner. Makes it + easier if you want to paste something with middle button without + having to move the pointer. + 2011-07-20 * Speedup when using a trackball or high CPI mouse. Use only mouse @@ -1927,7 +1927,8 @@ void focusnext(void) xcb_configure_window(conn, client->id, XCB_CONFIG_WINDOW_STACK_MODE, values); - xcb_warp_pointer(conn, XCB_NONE, client->id, 0, 0, 0, 0, 0, 0); + xcb_warp_pointer(conn, XCB_NONE, client->id, 0, 0, 0, 0, + client->width / 2, client->height / 2); setfocus(client); } } |