aboutsummaryrefslogtreecommitdiff
path: root/rootston
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-03-20 21:57:16 -0400
committerDrew DeVault <sir@cmpwn.com>2018-03-27 18:50:32 -0400
commitb73c4f48c10ae79a33d1611fb641d22b8b619c39 (patch)
treea3f7097b271846247c724117777ce9bc2dfc6e61 /rootston
parent0f7e78f6aa8530adc0dcc74a760b6478720e2ded (diff)
Fix exclusive zone among other layers
Diffstat (limited to 'rootston')
-rw-r--r--rootston/layer_shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/layer_shell.c b/rootston/layer_shell.c
index c0dff85a..ac7b2b20 100644
--- a/rootston/layer_shell.c
+++ b/rootston/layer_shell.c
@@ -53,7 +53,7 @@ static void apply_exclusive(struct wlr_box *output_area,
};
for (size_t i = 0; i < sizeof(edges) / sizeof(edges[0]); ++i) {
if ((anchor & edges[i].anchors)) {
- edges[i].value += exclusive * edges[i].multiplier;
+ *edges[i].value += exclusive * edges[i].multiplier;
}
}
}