Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Suárez Ruiz <javiersuarezruiz@hotmail.com>2019-04-11 11:38:56 +0300
committerxamarin-jenkins <jo.shields+jenkins@xamarin.com>2019-04-11 11:44:27 +0300
commita13ef95a318891e050ff8e745783665b2444d6fd (patch)
tree7f35d0c3ee64d355762b5634029e56a7b3c133bf
parenta65a6325f8113c64af88ae1816ee045cdf4f9149 (diff)
Added line to close the dialog at the end of the process
-rw-r--r--main/src/addins/MacPlatform/MacProxyCredentialProvider.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs b/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs
index 898375cdd6..7b21f4fbae 100644
--- a/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs
+++ b/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs
@@ -166,6 +166,7 @@ namespace MonoDevelop.MacIntegration
var password = passwordInput.StringValue;
result = new NetworkCredential (username, password);
}
+ alert.Window.Close ();
}
}
}