mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
17 lines
460 B
C#
17 lines
460 B
C#
using System.Numerics;
|
|
using Dalamud.Interface;
|
|
using ImGuiNET;
|
|
|
|
namespace Glamourer.Gui;
|
|
|
|
public partial class Interface
|
|
{
|
|
private static Vector2 _spacing = Vector2.Zero;
|
|
private static float _actorSelectorWidth;
|
|
|
|
private static void UpdateState()
|
|
{
|
|
_spacing = _spacing with { Y = ImGui.GetTextLineHeightWithSpacing() / 2 };
|
|
_actorSelectorWidth = 200 * ImGuiHelpers.GlobalScale;
|
|
}
|
|
}
|