repair the top border resizing

This commit is contained in:
Mike Griese 2021-11-16 12:55:42 -06:00
parent aa9577bfc7
commit 15ab87f5d4

View file

@ -168,6 +168,13 @@ LRESULT NonClientIslandWindow::_InputSinkMessageHandler(UINT const message,
// - If we're over _anything else_, stop hovering the buttons.
switch (wparam)
{
case HTTOP:
case HTCAPTION:
{
// Pass caption-related nonclient messages to the parent window.
auto parentWindow{ GetHandle() };
return SendMessage(parentWindow, message, wparam, lparam);
}
case HTMINBUTTON:
case HTMAXBUTTON:
case HTCLOSE:
@ -219,6 +226,7 @@ LRESULT NonClientIslandWindow::_InputSinkMessageHandler(UINT const message,
// to the root HWND.
switch (wparam)
{
case HTTOP:
case HTCAPTION:
{
// Pass caption-related nonclient messages to the parent window.
@ -243,6 +251,7 @@ LRESULT NonClientIslandWindow::_InputSinkMessageHandler(UINT const message,
// to the root HWND.
switch (wparam)
{
case HTTOP:
case HTCAPTION:
{
// Pass caption-related nonclient messages to the parent window.