aboutsummaryrefslogtreecommitdiffstats
path: root/Malmstone/Windows/ConfigWindow.cs
diff options
context:
space:
mode:
authorPinapelz <yukais@pinapelz.com>2024-09-06 12:27:44 -0700
committerPinapelz <yukais@pinapelz.com>2024-09-06 12:29:37 -0700
commite6c5dbb82e1fa286d5b9db7c3bfcb776f56a09b8 (patch)
tree8aa81c5735de2cf112d8a3f699c7a9d0b3b87389 /Malmstone/Windows/ConfigWindow.cs
parentfb567284db251d09e283e3eb65ef5bbaa1032b62 (diff)
add tooltips for config options
Diffstat (limited to 'Malmstone/Windows/ConfigWindow.cs')
-rw-r--r--Malmstone/Windows/ConfigWindow.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs
index 7d9e44e..05e75a1 100644
--- a/Malmstone/Windows/ConfigWindow.cs
+++ b/Malmstone/Windows/ConfigWindow.cs
@@ -56,6 +56,13 @@ public class ConfigWindow : Window, IDisposable
Configuration.Save();
}
+ if (ImGui.IsItemHovered())
+ {
+ ImGui.BeginTooltip();
+ ImGui.Text("Shows a notification with current series level EXP progression after ALL PVP matches");
+ ImGui.EndTooltip();
+ }
+
ImGui.Text("Notification Type");
int selectedPostMatchToastType = Configuration.PostmatchProgressionToastType;
if (ImGui.Combo("##MatchOptions", ref selectedPostMatchToastType, ToastOptions, ToastOptions.Length))
@@ -90,6 +97,12 @@ public class ConfigWindow : Window, IDisposable
Plugin.PvPAddon.DisableCrystallineConflictPostMatch();
Configuration.Save();
}
+ if (ImGui.IsItemHovered())
+ {
+ ImGui.BeginTooltip();
+ ImGui.Text("Show Wins/Losses needed until next Series Level in chat after Crystalline Conflict matches");
+ ImGui.EndTooltip();
+ }
ImGui.SameLine();
ImGui.Text("Crystalline Conflict");
@@ -104,6 +117,12 @@ public class ConfigWindow : Window, IDisposable
Plugin.PvPAddon.DisableFrontlinePostMatch();
Configuration.Save();
}
+ if (ImGui.IsItemHovered())
+ {
+ ImGui.BeginTooltip();
+ ImGui.Text("Show placements needed until next Series Level in chat after Frontline matches\nRoulettes shown in parentheses");
+ ImGui.EndTooltip();
+ }
ImGui.SameLine();
ImGui.Text("Frontlines");
@@ -118,6 +137,12 @@ public class ConfigWindow : Window, IDisposable
Plugin.PvPAddon.DisableRivalWingsPostMatch();
Configuration.Save();
}
+ if (ImGui.IsItemHovered())
+ {
+ ImGui.BeginTooltip();
+ ImGui.Text("Show Wins/Losses needed until next Series Level in chat after Rival Wings matches");
+ ImGui.EndTooltip();
+ }
ImGui.SameLine();
ImGui.Text("Rival Wings");
@@ -136,6 +161,12 @@ public class ConfigWindow : Window, IDisposable
Configuration.ShowMainWindowOnPVPReward = showMainWindowOnPVPReward;
Configuration.Save();
}
+ if (ImGui.IsItemHovered())
+ {
+ ImGui.BeginTooltip();
+ ImGui.Text("Automatically open the calculator window when viewing Series Malmstone rewards");
+ ImGui.EndTooltip();
+ }
ImGui.Text("Changes saved automatically");
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage