mirror of
https://github.com/swaywm/sway.git
synced 2024-11-23 00:11:28 +00:00
Fix xwayland configure position
This commit is contained in:
parent
eb5a8e03ff
commit
6579717994
|
@ -67,13 +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->wlr_xwayland_surface->width,
|
||||||
|
view->wlr_xwayland_surface->height);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void set_activated(struct sway_view *view, bool activated) {
|
static void set_activated(struct sway_view *view, bool activated) {
|
||||||
|
|
Loading…
Reference in a new issue