|
|
|
|
@ -6,3 +6,21 @@ Patch #1:
@@ -6,3 +6,21 @@ Patch #1:
|
|
|
|
|
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); |
|
|
|
|
|