diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:35:15 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:35:15 +0200 |
| commit | 7ddcebbbab8479ad80574db40aee8e894e411b2e (patch) | |
| tree | 9a07177066020060df21cf05b4ba1f1eefca9298 /src/cursor.zig | |
| parent | 4c97531860c04f30f812f10cb73c76fa593265b6 (diff) | |
| download | river-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.gz river-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.xz | |
Make Seat 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 ba1537c..aabbe10 100644 --- a/src/cursor.zig +++ b/src/cursor.zig @@ -4,7 +4,7 @@ const c = @import("c.zig"); const LayerSurface = @import("layer_surface.zig").LayerSurface; const Log = @import("log.zig").Log; const Output = @import("output.zig").Output; -const Seat = @import("seat.zig").Seat; +const Seat = @import("seat.zig"); const View = @import("view.zig").View; const ViewStack = @import("view_stack.zig").ViewStack; |
