feat: add jank hover highlight for links

This commit is contained in:
Anna
2022-02-15 18:36:16 -05:00
parent 1c22fe16b3
commit 1c1fd5d6d5
3 changed files with 45 additions and 3 deletions
+2 -2
View File
@@ -164,7 +164,7 @@ internal sealed class ChatLog : IUiComponent {
if (parts.Length < 2 || parts[0] != "chat") {
return;
}
switch (parts[1]) {
case "hide":
this._hideState = HideState.User;
@@ -988,7 +988,7 @@ internal sealed class ChatLog : IUiComponent {
}
if (wrap) {
ImGuiUtil.WrapText(content, chunk, handler);
ImGuiUtil.WrapText(content, chunk, handler, this.Ui.DefaultText);
} else {
ImGui.TextUnformatted(content);
ImGuiUtil.PostPayload(chunk, handler);