mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
[KBM] Constrain the buttons such that only one of the windows can be opened (#2566)
* Bypass XamlBridge Window focus handling * Constrain only one window can be opened at a time * Revert changes on files changed in another PR * Changed WM_DESTROY to WM_NCDESTROY Co-authored-by: Tomas Raies <tomas.raies@gmail.com>
This commit is contained in:
@@ -274,7 +274,7 @@ LRESULT CALLBACK EditShortcutsWindowProc(HWND hWnd, UINT messageCode, WPARAM wPa
|
||||
{
|
||||
return xamlBridgePtr->MessageHandler(messageCode, wParam, lParam);
|
||||
}
|
||||
else if (messageCode == WM_DESTROY)
|
||||
else if (messageCode == WM_NCDESTROY)
|
||||
{
|
||||
PostQuitMessage(0);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user