diff options
author | emersion <contact@emersion.fr> | 2018-03-31 10:28:01 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-31 10:53:53 -0400 |
commit | 65797179944b146e6e16894eb6c8e9d71fda09eb (patch) | |
tree | 210b7035ce81f511a0f40cf0f0960e8163a7b9c3 | |
parent | eb5a8e03ff10d956de70f121bc70fd4cad524a9f (diff) |
Fix xwayland configure position
-rw-r--r-- | sway/desktop/xwayland.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sway/desktop/xwayland.c b/sway/desktop/xwayland.c index 01c993b3..5f9c99a3 100644 --- a/sway/desktop/xwayland.c +++ b/sway/desktop/xwayland.c @@ -67,13 +67,10 @@ static void set_position(struct sway_view *view, double ox, double oy) { view->swayc->x = ox; view->swayc->y = oy; - if (view->width == 0 || view->height == 0) { - return; - } - wlr_xwayland_surface_configure(view->wlr_xwayland_surface, 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) { |