aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsaac Freund <mail@isaacfreund.com>2022-06-23 18:50:00 +0200
committerIsaac Freund <mail@isaacfreund.com>2022-06-23 18:50:00 +0200
commit7d9d8892260ce9eec29d26ac419da55fea63ac26 (patch)
treeab6af46ef86b1800622e439ee41314b8ee19d948
parent2eb013e214417b4d0f653a362e356076160328df (diff)
downloadriver-7d9d8892260ce9eec29d26ac419da55fea63ac26.tar.gz
river-7d9d8892260ce9eec29d26ac419da55fea63ac26.tar.xz
deps: update to latest zig-wlroots
This fixes a nasty ABI bug that could cause river to crash when hotplugging down to 0 outputs.
m---------deps/zig-wlroots0
-rw-r--r--river/Root.zig2
2 files changed, 1 insertions, 1 deletions
diff --git a/deps/zig-wlroots b/deps/zig-wlroots
-Subproject 42d08b0b1e50f7f0d142275f89c7e899ca8c78d
+Subproject 597b2448319caa90ebe3625dd03ce925dee08b1
diff --git a/river/Root.zig b/river/Root.zig
index 90e03de..73fb80b 100644
--- a/river/Root.zig
+++ b/river/Root.zig
@@ -84,7 +84,7 @@ pub fn init(self: *Self) !void {
const transaction_timer = try event_loop.addTimer(*Self, handleTransactionTimeout, self);
errdefer transaction_timer.remove();
- const noop_wlr_output = try server.headless_backend.headlessAddOutput();
+ const noop_wlr_output = try server.headless_backend.headlessAddOutput(1920, 1080);
self.* = .{
.output_layout = output_layout,
.output_manager = try wlr.OutputManagerV1.create(server.wl_server),