Skip to content

Commit 79c5641

Browse files
committed
Fix - SSIS parameters window hookup threw errors on other project types, e.g. viewing properties window of SSDT database project
1 parent a81a929 commit 79c5641

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

SSIS/ParametersWindowPlugin.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ public override void OnWindowActivated(Window GotFocus, Window LostFocus)
4646
return;
4747
}
4848
catch
49-
{ }
49+
{
50+
// If previous checks failed, the window cannot be what we are looking for, as we know the SSIS window has a valid object kind, and mode.
51+
return;
52+
}
5053

5154
try
5255
{

0 commit comments

Comments
 (0)