这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -418,13 +418,6 @@ private IntPtr _HandleNCCalcSize(WM uMsg, IntPtr wParam, IntPtr lParam, out bool
// Since we always want the client size to equal the window size, we can unconditionally handle it
// without having to modify the parameters.
handled = true;
if (wParam != IntPtr.Zero)
{
var client = (RECT)Marshal.PtrToStructure(lParam, typeof(RECT));
client.Bottom++;
Marshal.StructureToPtr(client, lParam, false);
return IntPtr.Zero;
}
return new IntPtr((int)WVR.REDRAW);
}

Expand Down