List of our custom patches to apply to the DockPanel Suite:

Patch #1:
	Close documents with middle click     - in DockPaneTabStripBase.cs
	Remove redundant finalizers           - in AutoHidePane.cs and AutoHideTab.cs
	Remove redundant P/Invoke call        - in AutoHideStripBase.cs
	Fix compilation warning               - in InertButton.cs
 Committed in revision 1147.

Patch #2:
	Activate the autohide pad explicitly  - in DockContentHandler.cs
	(DockContentHandler.Activate())  
	
Index: WinFormsUI/Docking/DockContentHandler.cs
===================================================================
--- WinFormsUI/Docking/DockContentHandler.cs	(revision 1839)
+++ WinFormsUI/Docking/DockContentHandler.cs	(working copy)
@@ -608,6 +608,9 @@
 					Form.Activate();
 				else if (!Form.ContainsFocus)
 				{
+					if (DockHelper.IsDockStateAutoHide(DockState) && DockPanel.ActiveAutoHideContent != Content)
+						DockPanel.ActiveAutoHideContent = Content;
+
 					if (Contains(ActiveWindowHandle))
 						User32.SetFocus(ActiveWindowHandle);
