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:
authorVsevolod Kukol <sevoku@microsoft.com>2019-04-10 20:47:14 +0300
committerxamarin-jenkins <jo.shields+jenkins@xamarin.com>2019-04-11 11:44:27 +0300
commita65a6325f8113c64af88ae1816ee045cdf4f9149 (patch)
treea058c796212c3a2aed1c59adc68195720c0b1261
parentcd5774799d7016245c3d4d4f5ca17d7d1d0dfc48 (diff)
[Mac] Apply IDE theme on the Proxy Credential dialog
-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 437534b33e..898375cdd6 100644
--- a/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs
+++ b/main/src/addins/MacPlatform/MacProxyCredentialProvider.cs
@@ -157,6 +157,7 @@ namespace MonoDevelop.MacIntegration
using (var alertDelegate = new PasswordAlertWindowDelegate (usernameInput, passwordInput, cancelButton, okButton)) {
alert.AccessoryView = view;
+ MonoDevelop.Components.IdeTheme.ApplyTheme (alert.Window);
alert.Window.WeakDelegate = alertDelegate;
alert.Window.InitialFirstResponder = usernameInput;
alert.Window.ReleasedWhenClosed = true;