4000bbd199
Security / scan (push) Successful in 12s
Updated .editorconfig to set indent_style=space and indent_size=4 for C# files. Reformat all .cs files to apply the new indentation settings. No code logic changes, just whitespace reformatting. also updated some comments in files in shorter and Precise way. No logic changes, just comment rewording for clarity and conciseness.
15 lines
371 B
C#
15 lines
371 B
C#
namespace HellionChat.Themes;
|
|
|
|
// Layout values mirror the ImGuiStyleVar slots pushed by HellionStyle.
|
|
public sealed record ThemeLayout(
|
|
float WindowRounding,
|
|
float ChildRounding,
|
|
float PopupRounding,
|
|
float FrameRounding,
|
|
float GrabRounding,
|
|
float TabRounding,
|
|
float ScrollbarRounding,
|
|
float WindowBorderSize,
|
|
float FrameBorderSize
|
|
);
|