aboutsummaryrefslogtreecommitdiff
path: root/src/command/modify_master_factor.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/modify_master_factor.zig
parent4c97531860c04f30f812f10cb73c76fa593265b6 (diff)
downloadriver-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.gz
river-7ddcebbbab8479ad80574db40aee8e894e411b2e.tar.xz
Make Seat a toplevel struct
Diffstat (limited to 'src/command/modify_master_factor.zig')
-rw-r--r--src/command/modify_master_factor.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/modify_master_factor.zig b/src/command/modify_master_factor.zig
index c522485..7c14fb8 100644
--- a/src/command/modify_master_factor.zig
+++ b/src/command/modify_master_factor.zig
@@ -2,7 +2,7 @@ const c = @import("../c.zig");
const std = @import("std");
const Arg = @import("../command.zig").Arg;
-const Seat = @import("../seat.zig").Seat;
+const Seat = @import("../seat.zig");
/// Modify the percent of the width of the screen that the master views occupy.
pub fn modifyMasterFactor(seat: *Seat, arg: Arg) void {