mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 04:54:14 +01:00
Minor fixes that might be helpful later
This commit is contained in:
parent
7137be9a3f
commit
ab43927a47
@ -371,24 +371,24 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct
|
|||||||
if (mouse_origin.x > midway_x) {
|
if (mouse_origin.x > midway_x) {
|
||||||
sway_log(L_INFO, "Downsizing view to the left");
|
sway_log(L_INFO, "Downsizing view to the left");
|
||||||
view->width += dx;
|
view->width += dx;
|
||||||
edge = WLC_RESIZE_EDGE_RIGHT;
|
edge += WLC_RESIZE_EDGE_RIGHT;
|
||||||
} else {
|
} else {
|
||||||
sway_log(L_INFO, "Upsizing view to the left");
|
sway_log(L_INFO, "Upsizing view to the left");
|
||||||
view->x += dx;
|
view->x += dx;
|
||||||
view->width -= dx;
|
view->width -= dx;
|
||||||
edge = WLC_RESIZE_EDGE_LEFT;
|
edge += WLC_RESIZE_EDGE_LEFT;
|
||||||
}
|
}
|
||||||
} else if (dx > 0){
|
} else if (dx > 0){
|
||||||
changed_floating = true;
|
changed_floating = true;
|
||||||
if (mouse_origin.x > midway_x) {
|
if (mouse_origin.x > midway_x) {
|
||||||
sway_log(L_INFO, "Upsizing to the right");
|
sway_log(L_INFO, "Upsizing to the right");
|
||||||
view->width += dx;
|
view->width += dx;
|
||||||
edge = WLC_RESIZE_EDGE_RIGHT;
|
edge += WLC_RESIZE_EDGE_RIGHT;
|
||||||
} else {
|
} else {
|
||||||
sway_log(L_INFO, "Downsizing to the right");
|
sway_log(L_INFO, "Downsizing to the right");
|
||||||
view->x += dx;
|
view->x += dx;
|
||||||
view->width -= dx;
|
view->width -= dx;
|
||||||
edge = WLC_RESIZE_EDGE_LEFT;
|
edge += WLC_RESIZE_EDGE_LEFT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user