diff options
author | kotontrion <[email protected]> | 2024-09-26 09:52:28 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-09-26 09:52:28 +0200 |
commit | 36e810d4f452c352caa6303d877f47047c701fe7 (patch) | |
tree | 702f1fdb94b87bb55d1941fd732296b0fbcc62f8 /lib/river/src/river.c | |
parent | 662f71471847aa7fd424aa24865eaf9a420f2f28 (diff) |
river: make focused-tags property writable
Diffstat (limited to 'lib/river/src/river.c')
-rw-r--r-- | lib/river/src/river.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/river/src/river.c b/lib/river/src/river.c index edf6af3..7b4f4f5 100644 --- a/lib/river/src/river.c +++ b/lib/river/src/river.c @@ -247,7 +247,7 @@ static void global_registry_handler(void* data, struct wl_registry* registry, ui if (priv->river_status_manager == NULL) return; struct wl_output* wl_out = wl_registry_bind(registry, id, &wl_output_interface, 4); AstalRiverOutput* output = - astal_river_output_new(id, wl_out, priv->river_status_manager, priv->display); + astal_river_output_new(id, wl_out, priv->river_status_manager, priv->river_control, priv->seat, priv->display); self->outputs = g_list_append(self->outputs, output); g_object_notify(G_OBJECT(self), "outputs"); |