Bug 601053: Prevent DXGI from handling alt+enter. r=vlad a=blocking-beta8

This commit is contained in:
Bas Schouten 2010-10-08 18:02:39 +02:00
Родитель 29d2843386
Коммит b67a107150
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -195,6 +195,9 @@ LayerManagerD3D10::Initialize()
return false;
}
// We need this because we don't want DXGI to respond to Alt+Enter.
dxgiFactory->MakeWindowAssociation(swapDesc.OutputWindow, DXGI_MWA_NO_WINDOW_CHANGES);
return true;
}