Skip to content

Commit

Permalink
Merge pull request #381 from jamesc-skyward/ShutdownStartedFix
Browse files Browse the repository at this point in the history
Fixed ShutdownStarted event never firing
[release]
  • Loading branch information
madskristensen authored Oct 3, 2022
2 parents f10d41b + 17e729c commit 8dae54f
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 8dae54f

Please sign in to comment.