Skip to content

Commit 54df87d

Browse files
committed
升级基础组件
1 parent 986284b commit 54df87d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ComputerLock/ComputerLock.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
<ItemGroup>
2020
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="8.0.0" />
2121
<PackageReference Include="JiuLing.AutoUpgrade" Version="2.2.6" />
22-
<PackageReference Include="JiuLing.CommonLibs" Version="1.7.1" />
22+
<PackageReference Include="JiuLing.CommonLibs" Version="1.7.2" />
2323
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Wpf" Version="8.0.100" />
2424
<PackageReference Include="ModernWpfUI" Version="0.9.6" />
25-
<PackageReference Include="MudBlazor" Version="8.0.0" />
25+
<PackageReference Include="MudBlazor" Version="8.2.0" />
2626
</ItemGroup>
2727

2828
<ItemGroup>

src/ComputerLock/Pages/Index.razor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ protected override async Task OnInitializedAsync()
4343
_keyboardDownChecked = (AppSettings.PasswordBoxActiveMethod & PasswordBoxActiveMethodEnum.KeyboardDown) == PasswordBoxActiveMethodEnum.KeyboardDown;
4444
_mouseDownChecked = (AppSettings.PasswordBoxActiveMethod & PasswordBoxActiveMethodEnum.MouseDown) == PasswordBoxActiveMethodEnum.MouseDown;
4545

46-
if (AppSettings.LockHotkeyString.IsNotTrimEmpty())
46+
if (AppSettings.LockHotkeyString.IsNotEmpty())
4747
{
4848
RegisterLockHotkey();
4949
}
50-
if (AppSettings.UnlockHotkeyString.IsNotTrimEmpty())
50+
if (AppSettings.UnlockHotkeyString.IsNotEmpty())
5151
{
5252
RegisterUnlockHotkey();
5353
}

0 commit comments

Comments
 (0)