config: keybinding clone must clone all members

This commit is contained in:
Mitchell Hashimoto
2023-09-29 22:04:17 -07:00
parent 521a2d15bb
commit 659fa2cc66

View File

@ -1537,6 +1537,8 @@ pub const Keybinds = struct {
return .{
.set = .{
.bindings = try self.set.bindings.clone(alloc),
.reverse = try self.set.reverse.clone(alloc),
.unconsumed = try self.set.unconsumed.clone(alloc),
},
};
}