diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-11-14 02:58:25 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-11-14 02:58:25 -0800 |
| commit | 32f7ba23d1b2b931f748819c9dce6ce6bc7473a2 (patch) | |
| tree | 161917d5512b42e678eaa728b72dc2755621bf1a | |
| parent | 6e0d1d4d2f7afd4501eb1ec1998319fb7d5bf425 (diff) | |
make display tracked extra level (30+) setting more discernablev1.0.7.3
| -rw-r--r-- | Malmstone/Windows/ConfigWindow.cs | 7 |
1 files 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(); |
