Skip to content

Commit

Permalink
Merge pull request #670 from cairoshell/pin-managedshell-update
Browse files Browse the repository at this point in the history
Update ManagedShell for #668
  • Loading branch information
dremin committed Mar 2, 2022
2 parents 8309836 + edcc79a commit 9701f08
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cairo Desktop/Cairo Desktop/Cairo Desktop.csproj
Expand Up @@ -67,7 +67,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ManagedShell" Version="0.0.160" />
<PackageReference Include="ManagedShell" Version="0.0.162" />
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion Cairo Desktop/Cairo Desktop/SettingsUI.xaml.cs
Expand Up @@ -371,7 +371,7 @@ private void PinnedIcons_Drop(object sender, DragEventArgs e)
{
NotifyIcon dropData = e.Data.GetData(typeof(NotifyIcon)) as NotifyIcon;

dropData.Pin(_shellManager.NotificationArea.PinnedNotifyIcons.Length);
dropData.Pin();
Settings.Instance.PinnedNotifyIcons = _shellManager.NotificationArea.PinnedNotifyIcons;
}

Expand Down
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ManagedShell" Version="0.0.160" />
<PackageReference Include="ManagedShell" Version="0.0.162" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>
Expand Down

0 comments on commit 9701f08

Please sign in to comment.