aboutsummaryrefslogtreecommitdiff
path: root/src/seat.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:28:17 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:28:17 +0200
commit4c97531860c04f30f812f10cb73c76fa593265b6 (patch)
tree06891aed249019ddf36509590d011acb0a1934c9 /src/seat.zig
parenta03cab94fc455f84fde2ad8afe34c91d6e5c2b3c (diff)
downloadriver-4c97531860c04f30f812f10cb73c76fa593265b6.tar.gz
river-4c97531860c04f30f812f10cb73c76fa593265b6.tar.xz
Make InputManager a toplevel struct
Diffstat (limited to 'src/seat.zig')
-rw-r--r--src/seat.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/seat.zig b/src/seat.zig
index 701f1b8..8a365c7 100644
--- a/src/seat.zig
+++ b/src/seat.zig
@@ -2,7 +2,7 @@ const c = @import("c.zig");
const std = @import("std");
const Cursor = @import("cursor.zig").Cursor;
-const InputManager = @import("input_manager.zig").InputManager;
+const InputManager = @import("input_manager.zig");
const Keyboard = @import("keyboard.zig").Keyboard;
const LayerSurface = @import("layer_surface.zig").LayerSurface;
const Output = @import("output.zig").Output;