Browse Source

SD2-490. Fixed problem where the pad contents were not displayed when the default layout was used.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@581 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Matt Ward 20 years ago
parent
commit
e2ff20d0bc
  1. 8
      src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs

8
src/Main/Base/Project/Src/Gui/Workbench/Layouts/SdiWorkspaceLayout.cs

@ -112,6 +112,11 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -112,6 +112,11 @@ namespace ICSharpCode.SharpDevelop.Gui
LoadLayoutConfiguration();
ShowPads();
foreach (PadContentWrapper content in contentHash.Values) {
content.AllowInitialize();
}
ShowViewContents();
RedrawAllComponents();
@ -182,9 +187,6 @@ namespace ICSharpCode.SharpDevelop.Gui @@ -182,9 +187,6 @@ namespace ICSharpCode.SharpDevelop.Gui
} catch {
// ignore errors loading configuration
}
foreach (PadContentWrapper content in contentHash.Values) {
content.AllowInitialize();
}
}
void LoadDefaultLayoutConfiguration()

Loading…
Cancel
Save