diff options
| author | Mitchell Hashimoto <m@mitchellh.com> | 2025-03-12 10:13:31 -0700 |
|---|---|---|
| committer | Mitchell Hashimoto <m@mitchellh.com> | 2025-03-12 10:15:14 -0700 |
| commit | 7e9be00924144950ab6100cb7136e91c6abb403e (patch) | |
| tree | cd9d1865f9c71fc13cd9e662761372d2f9d11989 /src/input/KeymapDarwin.zig | |
| parent | 43467690f310e79629c43926cb13a3fb51b50394 (diff) | |
working on macos
Diffstat (limited to 'src/input/KeymapDarwin.zig')
| -rw-r--r-- | src/input/KeymapDarwin.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/KeymapDarwin.zig b/src/input/KeymapDarwin.zig index 154f648a6..53c305ab1 100644 --- a/src/input/KeymapDarwin.zig +++ b/src/input/KeymapDarwin.zig @@ -195,7 +195,7 @@ pub fn translate( } else false; // Convert the utf16 to utf8 - const len = try std.unicode.utf16leToUtf8(out, char[0..char_count]); + const len = try std.unicode.utf16LeToUtf8(out, char[0..char_count]); return .{ .text = out[0..len], .composing = composing, |
