mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Make view_update_* update live props as well
This commit is contained in:
parent
47d56306c3
commit
9a9d9116be
@ -283,9 +283,7 @@ static void handle_commit(struct wl_listener *listener, void *data) {
|
|||||||
if (view->swayc->instructions->length) {
|
if (view->swayc->instructions->length) {
|
||||||
transaction_notify_view_ready_by_size(view,
|
transaction_notify_view_ready_by_size(view,
|
||||||
surface_state->width, surface_state->height);
|
surface_state->width, surface_state->height);
|
||||||
}
|
} else if (container_is_floating(view->swayc)) {
|
||||||
|
|
||||||
if (container_is_floating(view->swayc)) {
|
|
||||||
view_update_size(view, surface_state->width, surface_state->height);
|
view_update_size(view, surface_state->width, surface_state->height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -574,6 +574,8 @@ void view_update_position(struct sway_view *view, double lx, double ly) {
|
|||||||
container_damage_whole(view->swayc);
|
container_damage_whole(view->swayc);
|
||||||
view->x = lx;
|
view->x = lx;
|
||||||
view->y = ly;
|
view->y = ly;
|
||||||
|
view->swayc->current.view_x = lx;
|
||||||
|
view->swayc->current.view_y = ly;
|
||||||
if (container_is_floating(view->swayc)) {
|
if (container_is_floating(view->swayc)) {
|
||||||
container_set_geometry_from_floating_view(view->swayc);
|
container_set_geometry_from_floating_view(view->swayc);
|
||||||
}
|
}
|
||||||
@ -587,6 +589,8 @@ void view_update_size(struct sway_view *view, int width, int height) {
|
|||||||
container_damage_whole(view->swayc);
|
container_damage_whole(view->swayc);
|
||||||
view->width = width;
|
view->width = width;
|
||||||
view->height = height;
|
view->height = height;
|
||||||
|
view->swayc->current.view_width = width;
|
||||||
|
view->swayc->current.view_height = height;
|
||||||
if (container_is_floating(view->swayc)) {
|
if (container_is_floating(view->swayc)) {
|
||||||
container_set_geometry_from_floating_view(view->swayc);
|
container_set_geometry_from_floating_view(view->swayc);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user