diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:23:04 +0200 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-05-02 16:23:04 +0200 |
| commit | fb766fe09cebf9b487192099d6e7032481e77f89 (patch) | |
| tree | a20ef93b01a66f0de3e34c597e17c757c877daae /src/decoration.zig | |
| parent | 5dbff2c0181804341c5a3edc33370853e6388a9e (diff) | |
| download | river-fb766fe09cebf9b487192099d6e7032481e77f89.tar.gz river-fb766fe09cebf9b487192099d6e7032481e77f89.tar.xz | |
Make DecorationManager a toplevel struct
Diffstat (limited to 'src/decoration.zig')
| -rw-r--r-- | src/decoration.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoration.zig b/src/decoration.zig index 5e8df06..aaf7129 100644 --- a/src/decoration.zig +++ b/src/decoration.zig @@ -1,7 +1,7 @@ const std = @import("std"); const c = @import("c.zig"); -const DecorationManager = @import("decoration_manager.zig").DecorationManager; +const DecorationManager = @import("decoration_manager.zig"); // TODO: this needs to listen for destroy and free nodes from the deco list pub const Decoration = struct { |
