aboutsummaryrefslogtreecommitdiff
path: root/rootston/main.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-09-30 08:46:18 -0400
committerTony Crisci <tony@dubstepdish.com>2017-09-30 08:46:18 -0400
commit23e741144289a313079309a24c1516a5504a5c63 (patch)
treefb8b62372425a118cbe9e1ea5b1a3ac51481bc37 /rootston/main.c
parent0c48ef5ad860dfdd041b9ce5d300c6fa85151e3f (diff)
rootston: create desktop before input
Diffstat (limited to 'rootston/main.c')
-rw-r--r--rootston/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/main.c b/rootston/main.c
index c8ec1249..7b1ca298 100644
--- a/rootston/main.c
+++ b/rootston/main.c
@@ -20,8 +20,8 @@ int main(int argc, char **argv) {
assert(server.renderer = wlr_gles2_renderer_create(server.backend));
wl_display_init_shm(server.wl_display);
- server.input = input_create(&server, server.config);
server.desktop = desktop_create(&server, server.config);
+ server.input = input_create(&server, server.config);
server.data_device_manager = wlr_data_device_manager_create(
server.wl_display);