Skip to content

Commit

Permalink
Fixed ShutdownStarted event never firing
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesc-skyward committed Oct 3, 2022
1 parent f10d41b commit 17e729c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ int IVsShellPropertyEvents.OnShellPropertyChange(int propid, object var)
}
else if (propid == (int)__VSSPROPID6.VSSPROPID_ShutdownStarted)
{
if (!(bool)var)
if ((bool)var)
{
ShutdownStarted?.Invoke();
}
Expand Down

0 comments on commit 17e729c

Please sign in to comment.