- Add missing auto translates for the symbols

This commit is contained in:
Infi
2026-01-20 11:27:37 +01:00
parent 4f9a6cd5be
commit 6744c6676c
4 changed files with 32 additions and 19 deletions
+1 -1
View File
@@ -1486,7 +1486,7 @@ public sealed class ChatLogWindow : Window
var entry = AutoCompleteList[i];
var highlight = AutoCompleteSelection == i;
var clicked = ImGui.Selectable($"{entry.String}##{entry.Group}/{entry.Row}", highlight) || selected == i;
var clicked = ImGui.Selectable($"{entry.Text}##{entry.Group}/{entry.Row}", highlight) || selected == i;
if (i < 10)
{
var button = (i + 1) % 10;
+1
View File
@@ -155,6 +155,7 @@ public class SeStringDebugger : Window
RenderMetadataDictionary("Link AutoTranslatePayload", new Dictionary<string, string?>
{
{ "Text", at.Text },
{ "Key/Group", $"{at.Key}/{at.Group}" },
{ "Data", string.Join(" ", at.Encode().Select(b => b.ToString("X2"))) },
});
break;