From 9e161758bb626eea5d88095bef8ea0539468a84d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 7 Oct 2024 05:52:03 -1000 Subject: [PATCH] input: function is part of the binding mods --- src/input/key.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/input/key.zig b/src/input/key.zig index 3aa85bf01..30e61334f 100644 --- a/src/input/key.zig +++ b/src/input/key.zig @@ -131,6 +131,7 @@ pub const Mods = packed struct(Mods.Backing) { .ctrl = self.ctrl, .alt = self.alt, .super = self.super, + .function = self.function, }; }