aboutsummaryrefslogtreecommitdiff
path: root/src/seat.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:42:19 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:42:19 +0200
commita0d56ef6358e72d4e0d431523e87f746a0e45ce8 (patch)
tree841e147032bcb9985b769d68a2ff6d2496eb3a3f /src/seat.zig
parent96f2ff793c7606c8979d45b62b827c1cc50667d1 (diff)
downloadriver-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.gz
river-a0d56ef6358e72d4e0d431523e87f746a0e45ce8.tar.xz
Make LayerSurface 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 b92bce3..1b6b141 100644
--- a/src/seat.zig
+++ b/src/seat.zig
@@ -6,7 +6,7 @@ const std = @import("std");
const Cursor = @import("cursor.zig").Cursor;
const InputManager = @import("input_manager.zig");
const Keyboard = @import("keyboard.zig").Keyboard;
-const LayerSurface = @import("layer_surface.zig").LayerSurface;
+const LayerSurface = @import("layer_surface.zig");
const Output = @import("output.zig");
const View = @import("view.zig").View;
const ViewStack = @import("view_stack.zig").ViewStack;