BUG-1809: Fix didn't work correctly, another go at it.

This commit is contained in:
Robin 2015-10-07 16:30:19 +02:00
parent a1769dbc66
commit 213b332a66

View file

@ -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;
}