aboutsummaryrefslogtreecommitdiff
path: root/src/seat.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:40:05 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:40:05 +0200
commit96f2ff793c7606c8979d45b62b827c1cc50667d1 (patch)
tree6746c09489a28d0f08c35b279503f40ab92d5c0e /src/seat.zig
parent7ddcebbbab8479ad80574db40aee8e894e411b2e (diff)
downloadriver-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.gz
river-96f2ff793c7606c8979d45b62b827c1cc50667d1.tar.xz
Make Output 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 cfbcd56..b92bce3 100644
--- a/src/seat.zig
+++ b/src/seat.zig
@@ -7,7 +7,7 @@ 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 Output = @import("output.zig").Output;
+const Output = @import("output.zig");
const View = @import("view.zig").View;
const ViewStack = @import("view_stack.zig").ViewStack;