changed kanmoji to show correctly

This commit is contained in:
Tsubasahane
2025-12-30 14:37:13 +08:00
parent d1c955c74f
commit f8752fcb4d

View File

@@ -659,18 +659,18 @@ public class DrawUserPair
} }
else else
{ {
ImGui.TextUnformatted("User not onlineㄟ( ▔, ▔ )ㄏ"); ImGui.TextUnformatted("User not online. (´・ω・`)?");
} }
} }
else else
{ {
ImGui.TextUnformatted("NOT Sharing location with you.(⊙x⊙;)"); ImGui.TextUnformatted("NOT Sharing location with you. o(TヘTo)");
} }
ImGui.Separator(); ImGui.Separator();
if (shareLocationToOther) if (shareLocationToOther)
{ {
ImGui.TextUnformatted("Sharing your location.ヾ(•ω•`)o"); ImGui.TextUnformatted("Sharing your location. ヾ(•ω•`)o");
if (expireAt != DateTimeOffset.MaxValue) if (expireAt != DateTimeOffset.MaxValue)
{ {
ImGui.TextUnformatted("Expires at " + expireAt.ToLocalTime().ToString("g")); ImGui.TextUnformatted("Expires at " + expireAt.ToLocalTime().ToString("g"));
@@ -678,7 +678,7 @@ public class DrawUserPair
} }
else else
{ {
ImGui.TextUnformatted("NOT sharing your location.(´。_。`)"); ImGui.TextUnformatted("NOT sharing your location.  ̄へ ̄");
} }
ImGui.EndTooltip(); ImGui.EndTooltip();
} }