aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorLas <las@protonmail.ch>2018-08-08 13:59:03 +0200
committerLas <las@protonmail.ch>2018-09-18 10:14:33 +0200
commit57690594f497cbc9cc552eee75a94e76226e433e (patch)
tree61fcca5f88ab427e6f42a22a3d900daa2d770149 /rootston
parent59dd1dddbabb93569d06fb5612cb8178a9a50c1e (diff)
Remove extraneous indentation and conform to coding style
Diffstat (limited to 'rootston')
-rw-r--r--rootston/cursor.c2
-rw-r--r--rootston/desktop.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/rootston/cursor.c b/rootston/cursor.c
index b7dd98ed..ee9e5c6b 100644
--- a/rootston/cursor.c
+++ b/rootston/cursor.c
@@ -336,7 +336,7 @@ void roots_cursor_handle_touch_down(struct roots_cursor *cursor,
double sx, sy;
struct wlr_surface *surface = desktop_surface_at(
- desktop, lx, ly, &sx, &sy, NULL);
+ desktop, lx, ly, &sx, &sy, NULL);
uint32_t serial = 0;
if (surface && roots_seat_allow_input(cursor->seat, surface->resource)) {
diff --git a/rootston/desktop.c b/rootston/desktop.c
index 3f6d977e..e120508d 100644
--- a/rootston/desktop.c
+++ b/rootston/desktop.c
@@ -887,10 +887,10 @@ struct roots_desktop *desktop_create(struct roots_server *server,
wlr_input_inhibit_manager_create(server->wl_display);
desktop->input_inhibit_activate.notify = input_inhibit_activate;
wl_signal_add(&desktop->input_inhibit->events.activate,
- &desktop->input_inhibit_activate);
+ &desktop->input_inhibit_activate);
desktop->input_inhibit_deactivate.notify = input_inhibit_deactivate;
wl_signal_add(&desktop->input_inhibit->events.deactivate,
- &desktop->input_inhibit_deactivate);
+ &desktop->input_inhibit_deactivate);
desktop->virtual_keyboard = wlr_virtual_keyboard_manager_v1_create(
server->wl_display);