Skip to content

Commit

Permalink
fix checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrit committed Aug 27, 2024
1 parent c198cfc commit 8663326
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SeeSharp.Blazor/BoolSetting.razor
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@
{
return (bool)e.Value;
}

protected override Dictionary<string, object> CustomAttributes => new() {
{ "checked", Value }
};
}

1 change: 1 addition & 0 deletions SeeSharp.Blazor/SettingsGroup.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
flex-wrap: wrap;
justify-content: space-between;
width: max-content;
height: max-content;

background-color: #e6f1f4;
padding: 0.5em;
Expand Down
14 changes: 14 additions & 0 deletions SeeSharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SeeSharp.ToMitsuba", "SeeSh
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SeeSharp.Templates", "SeeSharp.Templates\SeeSharp.Templates.csproj", "{C64F4190-EAB3-4EC5-B882-7FDFADB91580}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SeeSharp.Blazor", "SeeSharp.Blazor\SeeSharp.Blazor.csproj", "{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -142,5 +144,17 @@ Global
{C64F4190-EAB3-4EC5-B882-7FDFADB91580}.Release|x64.Build.0 = Release|Any CPU
{C64F4190-EAB3-4EC5-B882-7FDFADB91580}.Release|x86.ActiveCfg = Release|Any CPU
{C64F4190-EAB3-4EC5-B882-7FDFADB91580}.Release|x86.Build.0 = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|x64.ActiveCfg = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|x64.Build.0 = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|x86.ActiveCfg = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Debug|x86.Build.0 = Debug|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|Any CPU.Build.0 = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|x64.ActiveCfg = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|x64.Build.0 = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|x86.ActiveCfg = Release|Any CPU
{613CF821-48F6-41C8-A2E6-0E8B7479D9DA}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal

0 comments on commit 8663326

Please sign in to comment.