From febc47442a425271727614a9e9ff4a36dc7c07a5 Mon Sep 17 00:00:00 2001 From: azyges Date: Mon, 1 Dec 2025 03:12:00 +0900 Subject: [PATCH] goober fix tooltips --- LightlessSync/UI/ZoneChatUi.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LightlessSync/UI/ZoneChatUi.cs b/LightlessSync/UI/ZoneChatUi.cs index aeddbbb..697f100 100644 --- a/LightlessSync/UI/ZoneChatUi.cs +++ b/LightlessSync/UI/ZoneChatUi.cs @@ -1153,7 +1153,7 @@ public sealed class ZoneChatUi : WindowMediatorSubscriberBase } if (ImGui.IsItemHovered()) { - ImGui.SetTooltip("Adjusts the scale of chat message text.\nRight-click to reset."); + ImGui.SetTooltip("Adjust scale of chat message text.\nRight-click to reset to default."); } var windowOpacity = Math.Clamp(chatConfig.ChatWindowOpacity, MinWindowOpacity, MaxWindowOpacity); @@ -1173,7 +1173,7 @@ public sealed class ZoneChatUi : WindowMediatorSubscriberBase if (ImGui.IsItemHovered()) { - ImGui.SetTooltip("Adjust transparency of the chat window.\nRight-click to reset to default."); + ImGui.SetTooltip("Adjust chat window transparency.\nRight-click to reset to default."); } ImGui.EndPopup();