From c69017d82766b24c62879156ee635510a8d4a2b7 Mon Sep 17 00:00:00 2001 From: JKlingen Date: Sat, 20 Oct 2012 08:27:51 +0000 Subject: [PATCH] fixed authentication dialog not opening during OAuth process [3578480] git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2169 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4 --- GreenshotPlugin/Core/OAuthHelper.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GreenshotPlugin/Core/OAuthHelper.cs b/GreenshotPlugin/Core/OAuthHelper.cs index 405bb67e3..c107cc215 100644 --- a/GreenshotPlugin/Core/OAuthHelper.cs +++ b/GreenshotPlugin/Core/OAuthHelper.cs @@ -295,6 +295,7 @@ namespace GreenshotPlugin.Core { Verifier = null; LOG.DebugFormat("Opening AuthorizationLink: {0}", authorizationLink); OAuthLoginForm oAuthLoginForm = new OAuthLoginForm(LoginTitle, BrowserSize, authorizationLink, CallbackUrl); + oAuthLoginForm.ShowDialog(); if (oAuthLoginForm.isOk) { if (oAuthLoginForm.CallbackParameters != null) { if (oAuthLoginForm.CallbackParameters.ContainsKey(OAUTH_TOKEN_KEY)) {