ui: fix wrong dash character (#35530)

Fix wrong dash character
This commit is contained in:
Dean Lee
2025-06-12 02:26:14 +08:00
committed by GitHub
parent e345f25ce4
commit 3d987cb9b5
+1 -1
View File
@@ -224,7 +224,7 @@ class GuiApplication:
for layout in KEYBOARD_LAYOUTS.values():
all_chars.update(key for row in layout for key in row)
all_chars = "".join(all_chars)
all_chars += "-"
all_chars += ""
codepoint_count = rl.ffi.new("int *", 1)
codepoints = rl.load_codepoints(all_chars, codepoint_count)