aboutsummaryrefslogtreecommitdiff
path: root/src/command/send_to_output.zig
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:35:15 +0200
committerIsaac Freund <ifreund@ifreund.xyz>2020-05-02 16:35:15 +0200
commit7ddcebbbab8479ad80574db40aee8e894e411b2e (patch)
tree9a07177066020060df21cf05b4ba1f1eefca9298 /src/command/send_to_output.zig
parent4c97531860c04f30f812f10cb73c76fa593265b6 (diff)
downloadriver-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.gz
river-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.xz
Make Seat a toplevel struct
Diffstat (limited to 'src/command/send_to_output.zig')
-rw-r--r--src/command/send_to_output.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/send_to_output.zig b/src/command/send_to_output.zig
index b626f93..e64d606 100644
--- a/src/command/send_to_output.zig
+++ b/src/command/send_to_output.zig
@@ -3,7 +3,7 @@ const std = @import("std");
const Arg = @import("../command.zig").Arg;
const Output = @import("../output.zig").Output;
-const Seat = @import("../seat.zig").Seat;
+const Seat = @import("../seat.zig");
/// Send the focused view to the the next or the previous output, depending on
/// the bool passed. Does nothing if there is only one output.