From 213b332a66051f810f0080f655e4359547b2632c Mon Sep 17 00:00:00 2001 From: Robin Date: Wed, 7 Oct 2015 16:30:19 +0200 Subject: [PATCH] BUG-1809: Fix didn't work correctly, another go at it. --- GreenshotPlugin/Core/WmInputLangChangeRequestFilter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GreenshotPlugin/Core/WmInputLangChangeRequestFilter.cs b/GreenshotPlugin/Core/WmInputLangChangeRequestFilter.cs index 74c48788e..0b8a8b1e4 100644 --- a/GreenshotPlugin/Core/WmInputLangChangeRequestFilter.cs +++ b/GreenshotPlugin/Core/WmInputLangChangeRequestFilter.cs @@ -35,7 +35,7 @@ namespace GreenshotPlugin.Core { if (m.Msg == (int)WindowsMessages.WM_INPUTLANGCHANGEREQUEST || m.Msg == (int)WindowsMessages.WM_INPUTLANGCHANGE) { - return m.HWnd.ToInt64() > 0x7FFFFFFF; + return m.LParam.ToInt64() > 0x7FFFFFFF; } return false; }