aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop
diff options
context:
space:
mode:
authorLibravatar emersion <contact@emersion.fr>2018-03-31 10:28:01 -0400
committerLibravatar emersion <contact@emersion.fr>2018-03-31 10:53:53 -0400
commit65797179944b146e6e16894eb6c8e9d71fda09eb (patch)
tree210b7035ce81f511a0f40cf0f0960e8163a7b9c3 /sway/desktop
parentCheck for null container (diff)
downloadsway-65797179944b146e6e16894eb6c8e9d71fda09eb.tar.gz
sway-65797179944b146e6e16894eb6c8e9d71fda09eb.tar.zst
sway-65797179944b146e6e16894eb6c8e9d71fda09eb.zip
Fix xwayland configure position
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/xwayland.c7
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) {
67 view->swayc->x = ox; 67 view->swayc->x = ox;
68 view->swayc->y = oy; 68 view->swayc->y = oy;
69 69
70 if (view->width == 0 || view->height == 0) {
71 return;
72 }
73
74 wlr_xwayland_surface_configure(view->wlr_xwayland_surface, 70 wlr_xwayland_surface_configure(view->wlr_xwayland_surface,
75 ox + loutput->x, oy + loutput->y, 71 ox + loutput->x, oy + loutput->y,
76 view->width, view->height); 72 view->wlr_xwayland_surface->width,
73 view->wlr_xwayland_surface->height);
77} 74}
78 75
79static void set_activated(struct sway_view *view, bool activated) { 76static void set_activated(struct sway_view *view, bool activated) {