Question
Test app to crash Photoshop
From PS 24.4 onwards (including Beta 25.5 m.2484) there seems to be a bug in handling requests to change language/keyboard layout, at least on my Windows 10.
I have made a simple C++ app to demonstrate it. This will crash Photoshop:
#include "windows.h"
int main()
{
HWND hPhotoshop = FindWindowA("Photoshop", NULL);
PostMessage(hPhotoshop, WM_INPUTLANGCHANGEREQUEST, 0, 0);
}
