Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Snowcloak/UI/UISharedService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ private static void CenterWindow(float width, float height, ImGuiCond cond = ImG
ImGui.SetWindowPos(new Vector2(center.X - width / 2, center.Y - height / 2), cond);
}

[GeneratedRegex(@"^(?:[a-zA-Z]:\\[\w\s\-\\]+?|\/(?:[\w\s\-\/])+?)$", RegexOptions.ECMAScript, 5000)]
[GeneratedRegex(@"^(?:[a-zA-Z]:\\[\w\s\-\\]+?|\/(?:[\w\s\-\/.])+?)$", RegexOptions.ECMAScript, 5000)]
private static partial Regex PathRegex();

private void FontText(string text, IFontHandle font, Vector4? color = null)
Expand Down