mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-14 21:34:14 +01:00
add mare synchronos full pause
This commit is contained in:
parent
085d918397
commit
9aaab87c91
11 changed files with 155 additions and 123 deletions
|
|
@ -183,6 +183,20 @@ namespace MareSynchronos.UI
|
|||
}
|
||||
}
|
||||
|
||||
public static void DrawHelpText(string helpText)
|
||||
{
|
||||
ImGui.SameLine();
|
||||
ImGui.TextDisabled("(?)");
|
||||
if (ImGui.IsItemHovered())
|
||||
{
|
||||
ImGui.BeginTooltip();
|
||||
ImGui.PushTextWrapPos(ImGui.GetFontSize() * 35.0f);
|
||||
ImGui.TextUnformatted(helpText);
|
||||
ImGui.PopTextWrapPos();
|
||||
ImGui.EndTooltip();
|
||||
}
|
||||
}
|
||||
|
||||
public void DrawCacheDirectorySetting()
|
||||
{
|
||||
var cacheDirectory = _pluginConfiguration.CacheFolder;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue