forked from aly/qstbak
muffin v6.34
This commit is contained in:
parent
7f7dca1cf0
commit
a10041e3fd
3 changed files with 59 additions and 3 deletions
|
|
@ -212,6 +212,35 @@ internal sealed class GeneralConfigComponent : ConfigComponent
|
|||
ImGui.TextColored(in col, text);
|
||||
ImGui.Unindent();
|
||||
}
|
||||
ImGui.Spacing();
|
||||
ImGui.Separator();
|
||||
ImGui.Text("Priority Quest Management");
|
||||
bool v9 = base.Configuration.General.ClearPriorityQuestsOnLogout;
|
||||
if (ImGui.Checkbox("Clear priority quests on character logout", ref v9))
|
||||
{
|
||||
base.Configuration.General.ClearPriorityQuestsOnLogout = v9;
|
||||
Save();
|
||||
}
|
||||
bool v10 = base.Configuration.General.ClearPriorityQuestsOnCompletion;
|
||||
if (ImGui.Checkbox("Remove priority quests when completed", ref v10))
|
||||
{
|
||||
base.Configuration.General.ClearPriorityQuestsOnCompletion = v10;
|
||||
Save();
|
||||
}
|
||||
ImGui.SameLine();
|
||||
using (ImRaii.PushFont(UiBuilder.IconFont))
|
||||
{
|
||||
ImGui.TextDisabled(FontAwesomeIcon.InfoCircle.ToIconString());
|
||||
}
|
||||
if (ImGui.IsItemHovered())
|
||||
{
|
||||
using (ImRaii.Tooltip())
|
||||
{
|
||||
ImGui.Text("Automatically removes completed quests from your priority queue.");
|
||||
ImGui.Text("This helps keep your priority list clean without manual intervention.");
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue