Implement start of new file system and saving, update a lot of things to ImSharp.

This commit is contained in:
Ottermandias 2025-10-27 11:07:58 +01:00
parent 6b475ee229
commit c098fbdfe8
71 changed files with 1115 additions and 986 deletions

View file

@ -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;
}
}