Improve icon size calculations
This commit is contained in:
parent
bc65bfe24c
commit
b66b4689b8
@ -52,7 +52,6 @@ internal sealed class ConfigWindow : LWindow
|
|||||||
private readonly Dictionary<Guid, TemporaryConfig> _currentEditPopups = new();
|
private readonly Dictionary<Guid, TemporaryConfig> _currentEditPopups = new();
|
||||||
private string _searchString = string.Empty;
|
private string _searchString = string.Empty;
|
||||||
private float _mainIndentSize = 1;
|
private float _mainIndentSize = 1;
|
||||||
private float _mainIconSize = 23;
|
|
||||||
private TemporaryConfig _newGroup = new() { Name = string.Empty };
|
private TemporaryConfig _newGroup = new() { Name = string.Empty };
|
||||||
|
|
||||||
private TemporaryConfig _newList = new()
|
private TemporaryConfig _newList = new()
|
||||||
@ -99,7 +98,6 @@ internal sealed class ConfigWindow : LWindow
|
|||||||
ImGui.GetStyle().FramePadding.X * 2f +
|
ImGui.GetStyle().FramePadding.X * 2f +
|
||||||
ImGui.GetStyle().ItemSpacing.X - ImGui.GetStyle().WindowPadding.X / 2;
|
ImGui.GetStyle().ItemSpacing.X - ImGui.GetStyle().WindowPadding.X / 2;
|
||||||
ImGui.PopFont();
|
ImGui.PopFont();
|
||||||
_mainIconSize = ImGui.CalcTextSize("X").Y + ImGui.GetStyle().FramePadding.Y * 2;
|
|
||||||
|
|
||||||
DrawVentureLists();
|
DrawVentureLists();
|
||||||
DrawCharacterGroups();
|
DrawCharacterGroups();
|
||||||
@ -408,8 +406,8 @@ internal sealed class ConfigWindow : LWindow
|
|||||||
IDalamudTextureWrap? icon = _iconCache.GetIcon(venture.IconId);
|
IDalamudTextureWrap? icon = _iconCache.GetIcon(venture.IconId);
|
||||||
if (icon != null)
|
if (icon != null)
|
||||||
{
|
{
|
||||||
ImGui.Image(icon.ImGuiHandle, new Vector2(_mainIconSize, _mainIconSize));
|
ImGui.Image(icon.ImGuiHandle, new Vector2(ImGui.GetFrameHeight()));
|
||||||
ImGui.SameLine(0, 3);
|
ImGui.SameLine(0, ImGui.GetStyle().FramePadding.X);
|
||||||
}
|
}
|
||||||
|
|
||||||
ImGui.SetNextItemWidth(130 * ImGuiHelpers.GlobalScale);
|
ImGui.SetNextItemWidth(130 * ImGuiHelpers.GlobalScale);
|
||||||
@ -730,8 +728,8 @@ internal sealed class ConfigWindow : LWindow
|
|||||||
IDalamudTextureWrap? icon = _iconCache.GetIcon(62000 + retainer.Job);
|
IDalamudTextureWrap? icon = _iconCache.GetIcon(62000 + retainer.Job);
|
||||||
if (icon != null)
|
if (icon != null)
|
||||||
{
|
{
|
||||||
ImGui.Image(icon.ImGuiHandle, new Vector2(_mainIconSize, _mainIconSize));
|
ImGui.Image(icon.ImGuiHandle, new Vector2(ImGui.GetFrameHeight()));
|
||||||
ImGui.SameLine(0, 3);
|
ImGui.SameLine(0, ImGui.GetStyle().FramePadding.X);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ImGui.Checkbox(
|
if (ImGui.Checkbox(
|
||||||
|
Loading…
Reference in New Issue
Block a user