aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/root.zig b/src/root.zig
index 3754b8b..9700827 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -34,12 +34,6 @@ pub const Root = struct {
/// Percentage of the total screen that the master section takes up.
master_factor: f64,
- /// Width of borders in pixels
- border_width: u32,
-
- /// Amount of view padding in pixels
- view_padding: u32,
-
/// Number of pending configures sent in the current transaction.
/// A value of 0 means there is no current transaction.
pending_configures: u32,
@@ -69,10 +63,6 @@ pub const Root = struct {
self.master_factor = 0.6;
- self.border_width = 4;
-
- self.view_padding = 10;
-
self.pending_configures = 0;
self.transaction_timer = null;