Minor UI changes
This commit is contained in:
@@ -889,7 +889,7 @@ public sealed class MacroEditor : Window, IDisposable
|
||||
var total = RecipeData.CalculateItemStartingQuality(idx, hqCount);
|
||||
ImGuiUtils.Tooltip($"{ingredient.Item.Name.ToDalamudString()} {SeIconChar.HighQuality.ToIconString()}\n+{perItem} Quality/Item{(total > 0 ? $"\n+{total} Quality" : "")}");
|
||||
}
|
||||
else
|
||||
else if (ingredient.Amount != 0)
|
||||
ImGuiUtils.Tooltip($"{ingredient.Item.Name.ToDalamudString()}");
|
||||
}
|
||||
ImGui.SameLine(0, 5);
|
||||
|
||||
@@ -939,7 +939,7 @@ public sealed class Settings : Window, IDisposable
|
||||
using (HeaderFont.Push())
|
||||
{
|
||||
ImGuiUtils.AlignCentered(ImGui.CalcTextSize("Craftimizer").X);
|
||||
ImGuiUtils.Hyperlink("Craftimizer", "https://github.com/WorkingRobot/craftimizer", false);
|
||||
ImGuiUtils.Hyperlink("Craftimizer", "https://github.com/WorkingRobot/Craftimizer", false);
|
||||
}
|
||||
|
||||
using (SubheaderFont.Push())
|
||||
|
||||
@@ -29,7 +29,7 @@ internal abstract class BaseBuffAction(
|
||||
public override string GetTooltip(Simulator s, bool addUsability)
|
||||
{
|
||||
var builder = new StringBuilder(base.GetTooltip(s, addUsability));
|
||||
builder.AppendLine($"{Duration} Steps");
|
||||
builder.AppendLine(Duration != 1 ? $"{Duration} Steps" : $"{Duration} Step");
|
||||
return builder.ToString();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user