mirror of
https://github.com/swaywm/sway.git
synced 2024-11-26 01:41:30 +00:00
xwayland: do not send surface configure when no width/height
The code in apply_horiz_layout systematically does `set_position` then `set_size`, so for new windows there is an invalid call. For old windows there are two calls when only one is needed, with the current code set_position could not send any surface configure without impact, but in the future it might be needed? Native wayland surfaces do not need to know where they are (the set_position handled only updates the sway internal view variable), why does X11 window need that?
This commit is contained in:
parent
8a97d3a494
commit
95963e4a1f
|
@ -67,6 +67,10 @@ static void set_position(struct sway_view *view, double ox, double oy) {
|
||||||
view->swayc->x = ox;
|
view->swayc->x = ox;
|
||||||
view->swayc->y = oy;
|
view->swayc->y = oy;
|
||||||
|
|
||||||
|
if (view->width == 0 || view->height == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
wlr_xwayland_surface_configure(view->wlr_xwayland_surface,
|
wlr_xwayland_surface_configure(view->wlr_xwayland_surface,
|
||||||
ox + loutput->x, oy + loutput->y,
|
ox + loutput->x, oy + loutput->y,
|
||||||
view->width, view->height);
|
view->width, view->height);
|
||||||
|
|
Loading…
Reference in a new issue