1
0
Fork 0
forked from aly/qstbak

muffin v7.4.7

This commit is contained in:
alydev 2025-12-28 12:35:39 +10:00
parent 1cc65e495d
commit 63f975ff4f
16 changed files with 1659 additions and 939 deletions

View file

@ -103,10 +103,12 @@ internal sealed class PresetBuilderComponent
ImGui.SetTooltip("No preset quests are currently in the priority list.");
return;
}
ImU8String tooltip = new ImU8String(59, 1);
ImU8String tooltip = new ImU8String(51, 2);
tooltip.AppendLiteral("Remove all ");
tooltip.AppendFormatted(list.Count);
tooltip.AppendLiteral(" preset-related quest(s) from the priority list.");
tooltip.AppendLiteral(" preset-related ");
tooltip.AppendFormatted((list.Count == 1) ? "quest" : "quests");
tooltip.AppendLiteral(" from the priority list.");
ImGui.SetTooltip(tooltip);
}
}