aboutsummaryrefslogtreecommitdiff
path: root/src/seat.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:48:09 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:48:09 +0200
commited98e8fe1aae139208b66db2764000a8e1e9f173 (patch)
tree31aea0105514df6d10110a1db11aca603435b754 /src/seat.zig
parent97d395dbfc2ecbd98f074cb6bd8b641119891b97 (diff)
downloadriver-ed98e8fe1aae139208b66db2764000a8e1e9f173.tar.gz
river-ed98e8fe1aae139208b66db2764000a8e1e9f173.tar.xz
Make Keyboard 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 faf7bca..67b2009 100644
--- a/src/seat.zig
+++ b/src/seat.zig
@@ -5,7 +5,7 @@ const std = @import("std");
const Cursor = @import("cursor.zig");
const InputManager = @import("input_manager.zig");
-const Keyboard = @import("keyboard.zig").Keyboard;
+const Keyboard = @import("keyboard.zig");
const LayerSurface = @import("layer_surface.zig");
const Output = @import("output.zig");
const View = @import("view.zig");