Code style

This commit is contained in:
emersion 2017-09-29 20:44:00 +02:00
parent 7c9f3240f6
commit 98707c16ad
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
1 changed files with 4 additions and 4 deletions

View File

@ -28,8 +28,8 @@ static void handle_configure(struct wl_listener *listener, void *data) {
xwayland_surface->width = event->width;
xwayland_surface->height = event->height;
roots_surface->view->x = (double) event->x;
roots_surface->view->y = (double) event->y;
roots_surface->view->x = (double)event->x;
roots_surface->view->y = (double)event->y;
wlr_xwayland_surface_configure(roots_surface->view->desktop->xwayland,
xwayland_surface);
@ -60,8 +60,8 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) {
struct roots_view *view = calloc(1, sizeof(struct roots_view));
view->type = ROOTS_XWAYLAND_VIEW;
view->x = (double) surface->x;
view->y = (double) surface->y;
view->x = (double)surface->x;
view->y = (double)surface->y;
view->xwayland_surface = surface;
view->roots_xwayland_surface = roots_surface;
view->wlr_surface = surface->surface;