diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:43:16 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:43:16 +0200 |
| commit | 9ea26d2a30b1721709f7e5c50afabd770534dc3d (patch) | |
| tree | 1ac6e07fc73a6dd6ce8eafa6cbcb6f5f0c99e6bf /src/cursor.zig | |
| parent | a0d56ef6358e72d4e0d431523e87f746a0e45ce8 (diff) | |
| download | river-9ea26d2a30b1721709f7e5c50afabd770534dc3d.tar.gz river-9ea26d2a30b1721709f7e5c50afabd770534dc3d.tar.xz | |
Make View a toplevel struct
Diffstat (limited to 'src/cursor.zig')
| -rw-r--r-- | src/cursor.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cursor.zig b/src/cursor.zig index f54c917..5eb4ff1 100644 --- a/src/cursor.zig +++ b/src/cursor.zig @@ -5,7 +5,7 @@ const LayerSurface = @import("layer_surface.zig"); const Log = @import("log.zig").Log; const Output = @import("output.zig"); const Seat = @import("seat.zig"); -const View = @import("view.zig").View; +const View = @import("view.zig"); const ViewStack = @import("view_stack.zig").ViewStack; const CursorMode = enum { |
