fix(mango): use xkb brief for shortDescription in language module

Remove leftover unconditional assignment that clobbered the value
computed from rxkb_layout_get_brief() with short_name, which made
short_description always equal short_name and defeated
format-<shortDescription> / {shortDescription}.
This commit is contained in:
Alex
2026-07-05 10:13:24 +02:00
parent 66139e4440
commit 8db89cc289
-2
View File
@@ -110,8 +110,6 @@ Language::Layout Language::getLayout(const std::string& fullName) {
short_description = short_name;
}
short_description = short_name;
Layout info{desc, short_name, variant, short_description};
return info;
}