- Add missing auto translates for the symbols
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user