mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-21 07:59:22 +01:00
Implement start of new file system and saving, update a lot of things to ImSharp.
This commit is contained in:
parent
6b475ee229
commit
c098fbdfe8
71 changed files with 1115 additions and 986 deletions
|
|
@ -37,7 +37,7 @@ public class ResourceTab(Configuration config, ResourceManagerService resourceMa
|
|||
resourceManager.IterateGraphs(DrawCategoryContainer);
|
||||
}
|
||||
|
||||
ImGui.NewLine();
|
||||
Im.Line.New();
|
||||
unsafe
|
||||
{
|
||||
ImGui.TextUnformatted(
|
||||
|
|
@ -131,8 +131,8 @@ public class ResourceTab(Configuration config, ResourceManagerService resourceMa
|
|||
/// <summary> Set the widths for a resource table. </summary>
|
||||
private void SetTableWidths()
|
||||
{
|
||||
_hashColumnWidth = 100 * UiHelpers.Scale;
|
||||
_pathColumnWidth = ImGui.GetWindowContentRegionMax().X - ImGui.GetWindowContentRegionMin().X - 300 * UiHelpers.Scale;
|
||||
_refsColumnWidth = 30 * UiHelpers.Scale;
|
||||
_hashColumnWidth = 100 * Im.Style.GlobalScale;
|
||||
_pathColumnWidth = ImGui.GetWindowContentRegionMax().X - ImGui.GetWindowContentRegionMin().X - 300 * Im.Style.GlobalScale;
|
||||
_refsColumnWidth = 30 * Im.Style.GlobalScale;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue