gpui_linux: Set _NET_WM_NAME on X11 window creation to support UTF-8 titles#51909
Merged
kubkon merged 1 commit intozed-industries:mainfrom Mar 25, 2026
Merged
Conversation
…tle support When creating an X11 window, only WM_NAME was set with type STRING (Latin-1), causing UTF-8 characters (e.g. em-dash in \"Zed — Settings\") to render as garbled bytes in taskbars and window previews. Fix: also set _NET_WM_NAME with UTF8_STRING during window creation, consistent with how set_title() already handles subsequent title updates. Fixes zed-industries#51871
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
On Linux X11, the Settings window title was displayed as garbled text
("Zed â██ Settings") in taskbars and window previews due to incorrect
character encoding.
Root cause: During X11 window creation, only
WM_NAMEwas set withtype
STRING(Latin-1). The em-dash character (U+2014) in "Zed — Settings"is a multi-byte UTF-8 sequence (
0xE2 0x80 0x94), which Latin-1 cannotrepresent correctly.
Fix: Also set
_NET_WM_NAMEwith typeUTF8_STRINGduring windowcreation, consistent with how
set_title()already handles subsequenttitle updates.
Fixes #51871
Release Notes:
_NET_WM_NAMEproperty.