aboutsummaryrefslogtreecommitdiff
path: root/rootston/xwayland.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-07-05 13:34:49 -0700
committerGitHub <noreply@github.com>2018-07-05 13:34:49 -0700
commit7c6588d7ae0b260aedc61da58eb6bf153b35ca94 (patch)
treed86694ce602f1656a939aac8f5b06e1875c2f7d7 /rootston/xwayland.c
parent5d1c5ff80b4e50db68fc4e918d0dc3c171a043ae (diff)
parent515d68231252194a8c230d26658fd316179704c1 (diff)
Merge pull request #1076 from emersion/redesign-surface-state
surface: redesign state
Diffstat (limited to 'rootston/xwayland.c')
-rw-r--r--rootston/xwayland.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rootston/xwayland.c b/rootston/xwayland.c
index b7dbab54..d0b80821 100644
--- a/rootston/xwayland.c
+++ b/rootston/xwayland.c
@@ -206,8 +206,8 @@ static void handle_surface_commit(struct wl_listener *listener, void *data) {
view_apply_damage(view);
- int width = wlr_surface->current->width;
- int height = wlr_surface->current->height;
+ int width = wlr_surface->current.width;
+ int height = wlr_surface->current.height;
view_update_size(view, width, height);
double x = view->x;
@@ -233,8 +233,8 @@ static void handle_map(struct wl_listener *listener, void *data) {
view->x = surface->x;
view->y = surface->y;
- view->width = surface->surface->current->width;
- view->height = surface->surface->current->height;
+ view->width = surface->surface->current.width;
+ view->height = surface->surface->current.height;
roots_surface->surface_commit.notify = handle_surface_commit;
wl_signal_add(&surface->surface->events.commit,