From 01d6b7f2dd3f533cffa4e758a503920d3d0d832a Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Fri, 10 Feb 2023 19:00:04 +0100 Subject: [PATCH] Remove `experimental` tooltip --- Pal.Client/Windows/ConfigWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pal.Client/Windows/ConfigWindow.cs b/Pal.Client/Windows/ConfigWindow.cs index 65c310b..77bdd37 100644 --- a/Pal.Client/Windows/ConfigWindow.cs +++ b/Pal.Client/Windows/ConfigWindow.cs @@ -155,7 +155,7 @@ namespace Pal.Client.Windows ImGui.Separator(); ImGui.Checkbox("Show silver coffers on current floor", ref _showSilverCoffers); - ImGuiComponents.HelpMarker("Shows all the silver coffers visible to you on the current floor.\nThis is not synchronized with other players and not saved between floors/runs.\n\nExperimental feature."); + ImGuiComponents.HelpMarker("Shows all the silver coffers visible to you on the current floor.\nThis is not synchronized with other players and not saved between floors/runs."); ImGui.Indent(); ImGui.BeginDisabled(!_showSilverCoffers); ImGui.Spacing();