Add more info to the about page

This commit is contained in:
Infi
2024-04-09 21:58:32 +02:00
parent 8446cb3c1f
commit 9feb70d262
6 changed files with 110 additions and 28 deletions
+3 -3
View File
@@ -37,14 +37,14 @@ public class SeStringDebugger : Window
ImGui.TextUnformatted("SeString Content");
ImGui.Spacing();
if (Plugin.Store.LastMessage.Sender == null)
if (Plugin.Store.LastMessage.Message == null)
{
ImGui.TextUnformatted("Nothing to show");
return;
}
// TODO: Make SeString freely selectable through chat
foreach (var payload in Plugin.Store.LastMessage.Sender.Payloads)
foreach (var payload in Plugin.Store.LastMessage.Message.Payloads)
{
switch (payload)
{
@@ -316,4 +316,4 @@ public class SeStringDebugger : Window
ImGui.PopStyleVar();
}
}
}