From 32f7ba23d1b2b931f748819c9dce6ce6bc7473a2 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Thu, 14 Nov 2024 02:58:25 -0800 Subject: make display tracked extra level (30+) setting more discernable --- Malmstone/Windows/ConfigWindow.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index a4df91c..1e1da6e 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -280,7 +280,10 @@ public class ConfigWindow : Window, IDisposable } ImGui.SameLine(); ImGui.Text("Show calculations when viewing Series Malmstones"); + ImGui.Separator(); + + ImGui.Text("Display Tracked Series Level Above 30 in..."); var showTrueSeriesLevelPVPReward = Configuration.ShowTrueSeriesLevelPVPReward; if (ImGui.Checkbox("##ShowTrueSeriesLevelPVPReward", ref showTrueSeriesLevelPVPReward)) { @@ -299,7 +302,7 @@ public class ConfigWindow : Window, IDisposable ImGui.EndTooltip(); } ImGui.SameLine(); - ImGui.Text("Show Series Level Above 30 in PVP Reward window"); + ImGui.Text("PVP Reward window"); var showTrueSeriesLevelPVPProfile = Configuration.ShowTrueSeriesLevelPVPProfile; if (ImGui.Checkbox("##ShowTrueSeriesLevelPVPProfile", ref showTrueSeriesLevelPVPProfile)) @@ -319,7 +322,7 @@ public class ConfigWindow : Window, IDisposable ImGui.EndTooltip(); } ImGui.SameLine(); - ImGui.Text("Show Series Level Above 30 in PVP Profile window"); + ImGui.Text("PVP Profile window"); ImGui.EndTabItem(); -- cgit v1.2.3