Skip to content

Commit

Permalink
update control lib (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolframhaussig authored Feb 27, 2024
1 parent 9de3f8a commit 098c0a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions WinFormsThemes/WinFormsThemes/Themes/AbstractTheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ public void Apply(Control control, ThemeOptions options)

if (control is StylableTextBox stb)
{
stb.HintForeColor = getForegroundColorForStyle(ThemeOptions.Hint, stb.Enabled);
stb.TextForeColor = getForegroundColorForStyle(options, false);
stb.PlaceholderForeColor = getForegroundColorForStyle(ThemeOptions.Hint, stb.Enabled);
stb.ForeColor = getForegroundColorForStyle(options, false);
stb.BorderColor = ControlBorderColor;
}

Expand Down
2 changes: 1 addition & 1 deletion WinFormsThemes/WinFormsThemes/WinFormsThemes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="AssortedDevelopment.StylableWinFormsControls" Version="0.2.0-beta.4" />
<PackageReference Include="AssortedDevelopment.StylableWinFormsControls" Version="0.2.0-beta.5" />
<PackageReference Include="JsonSchema.Net" Version="5.2.6" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="7.0.1" />
<PackageReference Include="Roslynator.Analyzers" Version="4.6.1">
Expand Down

0 comments on commit 098c0a8

Please sign in to comment.