Bugfix: Fix resizing on second monitor (Thanks litemotiv)
We now use the virtual screen’s size/position instead of the X root window for the grabwin (grabwin = the area in which the pointer may move when resizing).
This commit is contained in:
parent
f4ec7fdfe9
commit
2493c4b232
18
src/resize.c
18
src/resize.c
|
@ -36,13 +36,20 @@
|
||||||
int resize_graphical_handler(xcb_connection_t *conn, Workspace *ws, int first, int second,
|
int resize_graphical_handler(xcb_connection_t *conn, Workspace *ws, int first, int second,
|
||||||
resize_orientation_t orientation, xcb_button_press_event_t *event) {
|
resize_orientation_t orientation, xcb_button_press_event_t *event) {
|
||||||
int new_position;
|
int new_position;
|
||||||
xcb_screen_t *root_screen = xcb_setup_roots_iterator(xcb_get_setup(conn)).data;
|
|
||||||
i3Screen *screen = get_screen_containing(event->root_x, event->root_y);
|
i3Screen *screen = get_screen_containing(event->root_x, event->root_y);
|
||||||
if (screen == NULL) {
|
if (screen == NULL) {
|
||||||
LOG("BUG: No screen found at this position (%d, %d)\n", event->root_x, event->root_y);
|
LOG("BUG: No screen found at this position (%d, %d)\n", event->root_x, event->root_y);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* We cannot use the X root window's width_in_pixels or height_in_pixels
|
||||||
|
* attributes here since they are not updated when you configure new
|
||||||
|
* screens during runtime. Instead, we just use the most right and most
|
||||||
|
* bottom Xinerama screen and use their position + width/height to get
|
||||||
|
* the area of pixels currently in use */
|
||||||
|
i3Screen *most_right = get_screen_most(D_RIGHT, screen),
|
||||||
|
*most_bottom = get_screen_most(D_DOWN, screen);
|
||||||
|
|
||||||
LOG("event->event_x = %d, event->root_x = %d\n", event->event_x, event->root_x);
|
LOG("event->event_x = %d, event->root_x = %d\n", event->event_x, event->root_x);
|
||||||
|
|
||||||
LOG("Screen dimensions: (%d, %d) %d x %d\n", screen->rect.x, screen->rect.y, screen->rect.width, screen->rect.height);
|
LOG("Screen dimensions: (%d, %d) %d x %d\n", screen->rect.x, screen->rect.y, screen->rect.width, screen->rect.height);
|
||||||
|
@ -55,7 +62,10 @@ int resize_graphical_handler(xcb_connection_t *conn, Workspace *ws, int first, i
|
||||||
|
|
||||||
/* Open a new window, the resizebar. Grab the pointer and move the window around
|
/* Open a new window, the resizebar. Grab the pointer and move the window around
|
||||||
as the user moves the pointer. */
|
as the user moves the pointer. */
|
||||||
Rect grabrect = {0, 0, root_screen->width_in_pixels, root_screen->height_in_pixels};
|
Rect grabrect = {0,
|
||||||
|
0,
|
||||||
|
most_right->rect.x + most_right->rect.width,
|
||||||
|
most_bottom->rect.x + most_bottom->rect.height};
|
||||||
xcb_window_t grabwin = create_window(conn, grabrect, XCB_WINDOW_CLASS_INPUT_ONLY, -1, true, mask, values);
|
xcb_window_t grabwin = create_window(conn, grabrect, XCB_WINDOW_CLASS_INPUT_ONLY, -1, true, mask, values);
|
||||||
|
|
||||||
Rect helprect;
|
Rect helprect;
|
||||||
|
@ -66,9 +76,9 @@ int resize_graphical_handler(xcb_connection_t *conn, Workspace *ws, int first, i
|
||||||
helprect.height = screen->rect.height;
|
helprect.height = screen->rect.height;
|
||||||
new_position = event->root_x;
|
new_position = event->root_x;
|
||||||
} else {
|
} else {
|
||||||
helprect.x = 0;
|
helprect.x = screen->rect.x;
|
||||||
helprect.y = event->root_y;
|
helprect.y = event->root_y;
|
||||||
helprect.width = root_screen->width_in_pixels;
|
helprect.width = screen->rect.width;
|
||||||
helprect.height = 2;
|
helprect.height = 2;
|
||||||
new_position = event->root_y;
|
new_position = event->root_y;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue